/* ============================================
   Yoshitaka Kitao – Corporate Website
   Premium Design System
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --charcoal: #1a1a2e;
  --charcoal-light: #2d2d44;
  --gold: #c9a84c;
  --gold-light: #e0c675;
  --gold-dark: #a8883a;
  --blue-accent: #1e3a5f;
  --blue-light: #3a6b9f;
  --blue-gradient-start: #0f2035;
  --blue-gradient-end: #1a3555;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --cream: #f0ede6;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-400: #a0a0a0;
  --gray-500: #6b6b6b;
  --gray-600: #4a4a4a;
  --gray-700: #333333;
  --text-primary: #1a1a2e;
  --text-secondary: #4a4a6a;
  --text-light: #8a8aa0;
  --text-white: #ffffff;
  --text-gold: #c9a84c;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: Georgia, 'Times New Roman', serif;
  --font-accent: Georgia, 'Times New Roman', serif;
  --container-max: 1320px;
  --container-narrow: 960px;
  --section-gap: 140px;
  --header-height: 80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 40px;
}

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

.section-padding--sm {
  padding: 80px 0;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--text-white); }
.text-secondary { color: var(--text-secondary); }

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

/* ---------- Typography Scale ---------- */
.heading-xl {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.heading-md {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-sm {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: 1.25rem;
  line-height: 1.8;
}

.body-md {
  font-size: 1.05rem;
  line-height: 1.7;
}

.body-sm {
  font-size: 0.9rem;
  line-height: 1.6;
}

.overline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.accent-font {
  font-family: var(--font-accent);
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

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

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

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn .arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Glassmorphism Card ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.glass-card--light {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- Section Label ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-label__line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.section-label__text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
  padding: 0 40px;
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo__icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.logo__text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo__text span {
  color: var(--gold);
}

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

.main-nav a {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

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

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

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

/* ---------- Password Page ---------- */
.password-page {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1628 0%, #132240 30%, #1a3555 60%, #0f2035 100%);
  z-index: 10000;
  overflow: hidden;
}

.password-page__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.password-page__bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatOrb 12s ease-in-out infinite;
}

.password-page__bg::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation: floatOrb 15s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.password-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.password-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 56px 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: cardAppear 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 20px;
}

@keyframes cardAppear {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.password-card__logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.password-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.password-card__subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.password-input-wrap {
  position: relative;
  margin-bottom: 24px;
}

.password-input-wrap input {
  width: 100%;
  padding: 18px 24px;
  padding-right: 52px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  outline: none;
  transition: all var(--transition-fast);
}

.password-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.password-input-wrap input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.password-input-wrap .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  transition: color var(--transition-fast);
}

.password-input-wrap .toggle-password:hover {
  color: var(--gold);
}

.password-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.password-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.password-submit:active {
  transform: translateY(0);
}

.password-error {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-sm);
  color: #f87171;
  font-size: 0.85rem;
  animation: shakeError 0.5s ease;
}

.password-error.visible {
  display: flex;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.password-success {
  display: none;
}

.password-success.visible {
  display: block;
  animation: successPulse 0.6s ease;
}

@keyframes successPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.password-page.unlocking {
  animation: pageUnlock 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pageUnlock {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.1); }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a1628 0%, #132240 40%, #1a3555 70%, #0f2035 100%);
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.hero__orb--1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.1);
  top: -10%;
  right: 10%;
  animation: orbFloat1 15s ease-in-out infinite;
}

.hero__orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(30, 58, 95, 0.2);
  bottom: -5%;
  left: 5%;
  animation: orbFloat2 18s ease-in-out infinite;
}

.hero__orb--3 {
  width: 300px;
  height: 300px;
  background: rgba(201, 168, 76, 0.06);
  top: 40%;
  left: 40%;
  animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-40px, 30px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
}

.hero__container {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__text { max-width: 100%; }

.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-xl);
}

.hero__overline-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__overline-text {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.hero__stat {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.hero__stat:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.hero__stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero__image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.6) 100%);
  pointer-events: none;
}

.hero__image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

.hero__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
}

.hero__image-badge {
  position: absolute;
  bottom: 24px;
  left: -30px;
  padding: 16px 24px;
  background: rgba(10, 22, 40, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  z-index: 3;
}

.hero__image-badge-title {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero__image-badge-text {
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
}

/* ---------- Section Intro Block ---------- */
.section-intro {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.section-intro__number {
  font-size: 6rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.1);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-intro__content { max-width: 700px; }

.section-intro__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-intro__desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-slow);
}

.timeline__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__item:nth-child(odd) .timeline__content {
  grid-column: 1;
  text-align: right;
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 3;
  text-align: left;
}

.timeline__content {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.timeline__content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.timeline__marker {
  grid-column: 2;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 32px;
}

.timeline__marker::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--gold);
  z-index: 2;
}

.timeline__year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.timeline__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.timeline__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Quote Block ---------- */
.quote-block {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.quote-block__bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    radial-gradient(circle at 20% 80%, var(--gold) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--blue-light) 0%, transparent 50%);
  z-index: 0;
}

.quote-block__mark {
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-family: var(--font-accent);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  user-select: none;
}

.quote-block__text {
  position: relative;
  font-size: clamp(1.2rem, 3.5vw, 1.85rem);
  color: var(--white);
  line-height: 1.6;
  font-family: var(--font-accent);
  font-style: italic;
  max-width: 900px;
  margin-top: 10px;
  margin-bottom: 32px;
  z-index: 2;
}

.quote-block__author {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.quote-block__author-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 8px;
}

.quote-block__author-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quote-block__author-title {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

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

.stat-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.feature-card {
  padding: 44px 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(201, 168, 76, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.feature-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Split Content Section ---------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-section--reverse {
  direction: rtl;
}

.split-section--reverse > * {
  direction: ltr;
}

.split-section__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.split-section__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.split-section__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

/* ---------- Content Cards Grid ---------- */
.content-grid {
  display: grid;
  gap: 32px;
}

.content-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.content-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.content-grid--masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
}

.content-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.content-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-card__tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.content-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.3;
}

.content-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.content-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Dark Section ---------- */
.dark-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue-accent) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(58, 107, 159, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.dark-section .section-intro__desc,
.dark-section .body-md {
  color: rgba(255, 255, 255, 0.65);
}

.dark-section .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.dark-section .feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

.dark-section .feature-card__title {
  color: var(--white);
}

.dark-section .feature-card__desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Contact Form ---------- */
.contact-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 16px 20px;
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

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

/* ---------- Map Container ---------- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(201, 168, 76, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(58, 107, 159, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.footer-main {
  position: relative;
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand__icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
}

.footer-brand__name {
  font-size: 1.15rem;
  font-weight: 700;
}

.footer-brand__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-col__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-newsletter__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-newsletter__form {
  display: flex;
  gap: 8px;
}

.footer-newsletter__form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--white);
  outline: none;
  transition: all var(--transition-fast);
}

.footer-newsletter__form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter__form input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.footer-newsletter__form button {
  padding: 12px 20px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer-newsletter__form button:hover {
  background: var(--gold-light);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer-contact-info a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-map {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 150px;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(1) brightness(0.5) contrast(1.2);
  opacity: 0.5;
}

.footer-bottom {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom__credit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom__credit a {
  color: var(--gold);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-bottom__credit a:hover {
  color: var(--gold-light);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 14px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a1628 0%, #132240 40%, #1a3555 70%, #0f2035 100%);
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
}

.page-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.page-banner__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(201, 168, 76, 0.08);
  top: -100px;
  right: 10%;
}

.page-banner__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(58, 107, 159, 0.1);
  bottom: -80px;
  left: 5%;
}

.page-banner__content {
  position: relative;
  z-index: 2;
}

.page-banner__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
}

.page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.page-banner__breadcrumb a:hover {
  color: var(--gold);
}

.page-banner__breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.page-banner__breadcrumb .current {
  color: var(--gold);
}

.page-banner__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-banner__desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  line-height: 1.7;
}

/* ---------- Scroll Animations ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

.animate-fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Divider ---------- */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 24px 0;
}

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

/* ---------- Image Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: var(--gray-100);
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__caption {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Tab Navigation ---------- */
.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  overflow-x: auto;
}

.tab {
  padding: 12px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: calc(var(--radius-md) - 4px);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.5);
}

.tab.active {
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ---------- Parallax Container ---------- */
.parallax-section {
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* ---------- Counter Animation ---------- */
.counter {
  display: inline-block;
}

/* ---------- Progress Bars ---------- */
.progress-bar {
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Contact Page Details ---------- */
.contact-hero {
  padding: 180px 0 100px;
  background: var(--navy-light);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
}
.contact-hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.contact-hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-section {
  padding: var(--section-gap) 0;
  background: var(--off-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(10, 22, 40, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-card__text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card__link {
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color var(--transition-fast);
}
.contact-card__link:hover {
  color: var(--gold-light);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy);
}

.contact-form__subtitle {
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.submit-btn {
  width: 100%;
  padding: 1.2rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.submit-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.map-section {
  padding: 0;
  height: 500px;
  position: relative;
  background: var(--navy);
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 22, 40, 0.95);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
  min-width: 350px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.map-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.map-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- About Page Architectures ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.bio-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}

.bio-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.bio-details {
  background: var(--gray-100);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.bio-details__heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.bio-details__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.bio-details__item:last-child {
  margin-bottom: 0;
}

.bio-details__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.bio-details__value {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.bio-section {
  margin-bottom: 60px;
}

.bio-section:last-child {
  margin-bottom: 0;
}

.bio-section__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
}

.bio-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: left;
}

.bio-section p:last-child {
  margin-bottom: 0;
}

.feature-grid--two {
  grid-template-columns: repeat(2, 1fr) !important;
}

/* Biosection Design Patterns */
.bio-section--accent {
  background: var(--off-white);
  padding: 40px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.bio-section--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.bio-section--dark .bio-section__title {
  color: var(--white);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 20px;
}

.bio-section--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  :root {
    --section-gap: 100px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 30px;
  }

  .timeline__item {
    grid-template-columns: 60px 1fr;
  }

  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 2;
  }

  .timeline__item:nth-child(even) .timeline__spacer {
    display: none;
  }

  .timeline__dot {
    grid-column: 1;
  }

  .content-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .content-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }

  .hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image-frame {
    max-width: 360px;
  }

  .hero__image-badge {
    left: auto;
    right: -10px;
    bottom: 16px;
  }

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

  .split-section--reverse {
    direction: ltr;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro__number {
    font-size: 4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 80px;
  }

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

  .site-header {
    padding: 0 20px;
  }

  .heading-xl {
    font-size: 2.5rem;
  }

  .heading-lg {
    font-size: 2rem;
  }

  .feature-grid,
  .feature-grid--two,
  .stats-grid,
  .bio-grid {
    grid-template-columns: 1fr !important;
  }

  .content-grid--2col,
  .content-grid--3col,
  .content-grid--masonry {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .quote-block {
    padding: 40px 28px;
  }

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

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .page-banner {
    padding: 130px 0 60px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .timeline__marker {
    display: none;
  }

  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    grid-column: 1;
    text-align: left;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .contact-form-wrapper {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .password-card {
    padding: 40px 28px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.88rem;
  }
  
  .contact-hero {
    padding: 140px 0 60px;
  }
}

/* ---------- Page-specific Tweaks ---------- */

/* About Page Bio Grid */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.bio-sidebar {
  position: sticky;
  top: 100px;
}

.bio-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.bio-portrait img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.bio-details {
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
}

.bio-details__item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
}

.bio-details__item:last-child {
  border-bottom: none;
}

.bio-details__label {
  color: var(--text-secondary);
  font-weight: 500;
}

.bio-details__value {
  font-weight: 600;
  color: var(--navy);
}

/* Vision Cards */
.vision-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.vision-card--gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.vision-card__number {
  font-size: 5rem;
  font-weight: 800;
  opacity: 0.06;
  position: absolute;
  top: 20px;
  right: 30px;
  line-height: 1;
}

/* Media Cards */
.media-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  align-items: center;
}

.media-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.media-card__thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 140px;
}

.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--gray-100);
}

.media-card__meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.media-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.media-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Legacy Impact Numbers */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.impact-card {
  padding: 40px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
}

.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.impact-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.impact-card__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-card__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .bio-sidebar {
    position: static;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card__thumb {
    height: 200px;
  }
}

/* ---------- Loading Screen for Pages ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Smooth page transition ---------- */
.page-content {
  animation: pageIn 0.6s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
