/* ========================================================
   SHEIKH MAKTOUM BIN MOHAMMED AL MAKTOUM
   Royal Leadership Website – Global Design System
   ======================================================== */

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

/* ── CSS Custom Properties ── */
:root {
  /* Primary palette */
  --royal-navy: #0a0e1a;
  --royal-midnight: #111827;
  --royal-dark: #1a1f33;
  --royal-slate: #1e2640;
  --royal-muted: #2a3052;

  /* Gold spectrum */
  --gold-primary: #c9a84c;
  --gold-light: #e2c87d;
  --gold-bright: #f0d98c;
  --gold-deep: #a88a2e;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --gold-subtle: rgba(201, 168, 76, 0.08);

  /* Accent */
  --ivory: #f5f0e1;
  --ivory-soft: #faf6ec;
  --text-primary: #f0ece3;
  --text-secondary: #b8b0a0;
  --text-muted: #8a8070;

  /* Spacing */
  --section-pad: 120px;
  --container-max: 1280px;
  --gap-xl: 80px;
  --gap-lg: 60px;
  --gap-md: 40px;
  --gap-sm: 24px;
  --gap-xs: 16px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Transitions */
  --ease-royal: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 0.4s var(--ease-royal);
  --transition-slow: 0.8s var(--ease-royal);
  --transition-fast: 0.25s ease;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--royal-navy);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ivory);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 72ch;
}

/* ── Islamic Geometric Pattern SVG ── */
.islamic-pattern-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z' fill='none' stroke='%23c9a84c' stroke-width='0.5'/%3E%3Cpath d='M40 10L70 40L40 70L10 40Z' fill='none' stroke='%23c9a84c' stroke-width='0.3'/%3E%3Cpath d='M40 20L60 40L40 60L20 40Z' fill='none' stroke='%23c9a84c' stroke-width='0.3'/%3E%3Ccircle cx='40' cy='40' r='5' fill='none' stroke='%23c9a84c' stroke-width='0.3'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}

.islamic-border-top {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-deep) 15%,
    var(--gold-primary) 35%,
    var(--gold-light) 50%,
    var(--gold-primary) 65%,
    var(--gold-deep) 85%,
    transparent 100%
  );
}

.islamic-divider {
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 30 L30 0 L60 30 L90 0 L120 30 L90 60 L60 30 L30 60 Z' fill='none' stroke='%23c9a84c' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.5;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap-sm);
}

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

/* ── PASSWORD GATE ── */
.password-gate {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--royal-navy);
  overflow: hidden;
  transition: opacity 1s var(--ease-royal), transform 1.2s var(--ease-royal);
}

.password-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cpath d='M50 0L100 50L50 100L0 50Z' fill='none' stroke='%23c9a84c' stroke-width='0.4'/%3E%3Cpath d='M50 15L85 50L50 85L15 50Z' fill='none' stroke='%23c9a84c' stroke-width='0.25'/%3E%3Cpath d='M50 30L70 50L50 70L30 50Z' fill='none' stroke='%23c9a84c' stroke-width='0.25'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.06;
  animation: patternDrift 30s linear infinite;
}

@keyframes patternDrift {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(50px, 50px) rotate(5deg); }
}

.password-gate::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0.15;
  animation: gateGlow 4s ease-in-out infinite alternate;
}

@keyframes gateGlow {
  0% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1.1); }
}

.password-gate.gate-open {
  opacity: 0;
  transform: scale(1.15);
  pointer-events: none;
}

.gate-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--gap-md);
}

.gate-emblem {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--gap-md);
  position: relative;
}

.gate-emblem svg {
  width: 100%;
  height: 100%;
}

.gate-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gate-subtitle {
  font-family: 'Amiri', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--gap-md);
  letter-spacing: 0.05em;
}

.gate-input-wrapper {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.gate-input {
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-align: center;
  outline: none;
  transition: var(--transition-base);
}

.gate-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px var(--gold-glow);
  background: rgba(255, 255, 255, 0.06);
}

.gate-input::placeholder {
  color: var(--text-muted);
  letter-spacing: 0.15em;
  font-size: 0.85rem;
}

.gate-input.shake {
  animation: shakeInput 0.5s ease;
  border-color: #e74c3c;
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-12px); }
  30% { transform: translateX(10px); }
  45% { transform: translateX(-8px); }
  60% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
  90% { transform: translateX(2px); }
}

.gate-enter-btn {
  display: inline-block;
  margin-top: var(--gap-sm);
  padding: 14px 48px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-primary), var(--gold-light));
  border: none;
  border-radius: var(--radius-md);
  color: var(--royal-navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.gate-enter-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.gate-enter-btn:hover::after {
  transform: translateX(100%);
}

.gate-enter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.gate-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gate-error.visible {
  opacity: 1;
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition-base);
  background: transparent;
}

.site-nav.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gap-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.nav-brand-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-primary);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-base);
  border-radius: 2px;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO SECTIONS ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--royal-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.92) 0%,
    rgba(10, 14, 26, 0.75) 40%,
    rgba(10, 14, 26, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 160px var(--gap-sm) var(--section-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--gold-subtle);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--gap-sm);
}

.hero-badge i {
  font-size: 0.65rem;
}

.hero h1 {
  margin-bottom: var(--gap-sm);
  max-width: 700px;
}

.hero h1 .gold-text {
  color: var(--gold-primary);
  display: block;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: var(--gap-md);
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-primary));
  border: none;
  border-radius: var(--radius-md);
  color: var(--royal-navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
  color: var(--royal-navy);
}

/* Hero variant for inner pages */
.hero-inner {
  min-height: 60vh;
  padding-top: 100px;
}

.hero-inner .hero-content {
  padding-top: 120px;
  padding-bottom: 80px;
}

/* ── SECTIONS ── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--royal-midnight);
}

.section-darker {
  background: var(--royal-dark);
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: var(--gap-xs);
}

.section-header p {
  margin: 0 auto;
  font-size: 1.05rem;
  max-width: 600px;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  margin: 16px auto 0;
}

/* ── CARDS ── */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.card:hover::before {
  opacity: 1;
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-subtle);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-md);
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: var(--gap-sm);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── GRID LAYOUTS ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

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

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

/* ── STATISTICS / COUNTERS ── */
.stat-block {
  text-align: center;
  padding: var(--gap-md);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding: var(--gap-md) 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-primary), transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  width: 50%;
  padding-right: 50px;
  padding-bottom: var(--gap-lg);
  position: relative;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  margin-left: 50%;
  padding-right: 0;
  padding-left: 50px;
}

.timeline-dot {
  position: absolute;
  right: -8px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--gold-primary);
  border: 3px solid var(--royal-navy);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 20px var(--gold-glow);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.timeline-text h4 {
  margin-bottom: 8px;
  color: var(--ivory);
}

.timeline-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ── IMAGE CONTAINERS ── */
.img-portrait {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--royal-dark);
}

.img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.img-landscape {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--royal-dark);
}

.img-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-hero-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.img-hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ── GALLERY MASONRY ── */
.gallery-grid {
  columns: 3;
  column-gap: var(--gap-sm);
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--gap-sm);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition-base);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-base);
}

.gallery-item:hover img {
  filter: brightness(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px 16px;
  background: linear-gradient(to top, rgba(10, 14, 26, 0.9), transparent);
  color: var(--ivory);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 14, 26, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition-base);
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: var(--royal-navy);
}

/* ── FORM STYLES ── */
.form-group {
  margin-bottom: var(--gap-sm);
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-primary));
  border: none;
  border-radius: var(--radius-md);
  color: var(--royal-navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-base);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--royal-midnight);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: var(--gap-lg) 0 var(--gap-md);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap-md);
  margin-bottom: var(--gap-md);
  padding-bottom: var(--gap-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3 {
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

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

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--gold-primary);
  font-weight: 500;
}

/* ── INFOGRAPHIC STYLES ── */
.info-card {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.02));
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  padding: var(--gap-md);
  text-align: center;
  transition: var(--transition-base);
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--gap-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-subtle), rgba(201, 168, 76, 0.15));
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1.6rem;
  color: var(--gold-primary);
}

/* ── PAGE TRANSITION OVERLAY ── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--royal-navy);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-royal);
}

.page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-royal), transform 0.8s var(--ease-royal);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-royal), transform 0.8s var(--ease-royal);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-royal), transform 0.8s var(--ease-royal);
}

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

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }

/* ── UTILITY CLASSES ── */
.text-gold { color: var(--gold-primary); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

/* ── GOLD SHIMMER ANIMATION ── */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold-deep) 0%,
    var(--gold-light) 25%,
    var(--gold-bright) 50%,
    var(--gold-light) 75%,
    var(--gold-deep) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

/* ── EDITORIAL LAYOUT ── */
.editorial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.editorial-block.reverse {
  direction: rtl;
}

.editorial-block.reverse > * {
  direction: ltr;
}

.editorial-text {
  padding: var(--gap-md) 0;
}

.editorial-text h2 {
  margin-bottom: var(--gap-sm);
}

.editorial-text p {
  margin-bottom: var(--gap-xs);
}

.editorial-img {
  position: relative;
}

.editorial-img img {
  border-radius: var(--radius-lg);
  width: 100%;
}

.editorial-img::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ── QUOTE BLOCK ── */
.quote-block {
  position: relative;
  padding: var(--gap-md) var(--gap-lg);
  border-left: 3px solid var(--gold-primary);
  background: var(--gold-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: var(--gap-md) 0;
}

.quote-block p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gold-primary);
  font-style: normal;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  :root {
    --section-pad: 100px;
  }
}

@media (max-width: 992px) {
  :root {
    --section-pad: 80px;
    --gap-xl: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: var(--gap-md);
    transition: right var(--transition-base);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-hamburger {
    display: flex;
  }

  .editorial-block {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

  .editorial-block.reverse {
    direction: ltr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--gap-md);
  }

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

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

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

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
    justify-content: flex-start;
  }

  .timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 50px;
  }

  .timeline-dot {
    left: 12px;
    right: auto;
  }

  .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
    --gap-xl: 40px;
    --gap-lg: 30px;
  }

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

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

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

  .gallery-grid {
    columns: 2;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 120px var(--gap-sm) 60px;
  }

  .hero-inner .hero-content {
    padding-top: 100px;
    padding-bottom: 60px;
  }

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

  .footer-social {
    justify-content: center;
  }
}

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

  .gallery-grid {
    columns: 1;
  }

  .gate-title {
    font-size: 1.1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .quote-block {
    padding: var(--gap-sm);
  }

  .quote-block p {
    font-size: 1.1rem;
  }
}
