/* ============================================================
   Crown Legacy — Main Stylesheet
   Colors: #091221 | #29426c | #e9b851 | #5c3014
   NOTE: Minify this file before production deployment.
   ============================================================ */

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

/* === CSS VARIABLES === */
:root {
  --dark: #091221;
  --primary: #1a2d5a;
  --gold: #c9963b;
  --gold-dark: #a07828;
  --gold-light: #e8b84b;
  --brown: #5c3014;
  --white: #ffffff;
  --off-white: #f8f7f2;
  --light-gray: #eeece6;
  --text: #1a1a2e;
  --text-muted: #5a5a72;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --container-max: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 4px 24px rgba(9,18,33,0.10);
  --shadow-lg: 0 10px 48px rgba(9,18,33,0.18);
  --transition: all 0.3s ease;
  --header-height: 80px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
address { font-style: normal; }

/* === SKIP LINK (Accessibility) === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0.75rem; }

/* === FOCUS STYLES === */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* === CONTAINER === */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 0.85rem 0 1.4rem;
  border-radius: 2px;
}
.text-center { text-align: center; }
.text-center .section-divider { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.8; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white) !important; }
.text-muted { color: var(--text-muted); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: transparent; color: var(--dark); }
.btn-lg { padding: 1rem 2.5rem; font-size: 0.88rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.78rem; }
.btn-full { width: 100%; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* === SITE HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.site-header.page-header { background: var(--dark); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Kept for any legacy references */
.logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; gap: 0; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* Desktop Nav */
.main-nav { display: none; align-items: center; gap: 0; }
@media (min-width: 992px) { .main-nav { display: flex; } }
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 2px;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 70%; }
.main-nav a.active { color: var(--gold); }
.main-nav .btn { margin-left: 0.5rem; }
.main-nav .btn::after { display: none; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 992px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--dark);
  padding: 1rem 1.25rem 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - var(--header-height));
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.active { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.9rem 0.25rem;
  min-height: 44px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); padding-left: 0.5rem; }
.mobile-nav .btn-primary {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  border-bottom: none;
  padding: 0.875rem;
}
.mobile-nav .btn-primary:hover { padding-left: 0.875rem; }

/* === HERO (Homepage) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #050c17 0%, var(--dark) 30%, #1b3055 70%, var(--primary) 100%);
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(5,12,23,0.92) 0%, rgba(5,12,23,0.55) 55%, rgba(41,66,108,0.3) 100%);
  z-index: 2;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: radial-gradient(circle at 20% 80%, rgba(201,150,59,0.06) 0%, transparent 40%),
                    radial-gradient(circle at 80% 20%, rgba(41,66,108,0.2) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 760px;
  padding: 4rem 0 6rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,150,59,0.12);
  border: 1px solid rgba(201,150,59,0.35);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--gold); }
.hero .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.85;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  padding: calc(var(--header-height) + 3.5rem) 0 3.5rem;
  background: linear-gradient(140deg, var(--dark) 0%, #162945 50%, var(--primary) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,150,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(41,66,108,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; font-size: 1.05rem; line-height: 1.8; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); font-weight: 600; }
.breadcrumb svg { width: 14px; height: 14px; }

/* Schema (hidden) */
.sr-only, .visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* === SECTIONS === */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.bg-dark { background: var(--dark); }
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: var(--white); }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.65); }
.bg-dark p { color: rgba(255,255,255,0.72); }
.bg-primary { background: var(--primary); }
.bg-primary h2,.bg-primary h3 { color: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-light { background: var(--light-gray); }
.bg-gold { background: var(--gold); }

/* === STATS BAR === */
.stats-bar { background: var(--gold); padding: 2.25rem 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(9,18,33,0.6);
}

/* === INTRO GRID === */
.intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) { .intro-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .intro-grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }
@media (max-width: 767px) { .mobile-first { order: -1; } }

/* Image Frame */
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-gray);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  background: var(--gold);
  color: var(--dark);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  z-index: 2;
}
.img-badge strong { display: block; font-size: 2.2rem; font-family: var(--font-heading); font-weight: 700; line-height: 1; }
.img-badge span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  gap: 0.75rem;
  text-align: center;
  padding: 1rem;
}
.img-placeholder svg { width: 44px; height: 44px; opacity: 0.3; }

/* === WHY CHOOSE US — REDESIGNED === */
.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.why-card-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(201,150,59,0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.why-card-icon svg { width: 20px; height: 20px; }
.why-card-text h4 { font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--dark); }
.why-card-text p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
@media (max-width: 992px) {
  .why-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .why-cards { grid-template-columns: 1fr; }
}

/* === SERVICE CARDS === */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid rgba(41,66,108,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

/* Services page detail blocks */
.service-detail-block {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-detail-block:last-child { border-bottom: none; }
@media (min-width: 768px) { .service-detail-block { grid-template-columns: 1fr 1fr; } }
@media (min-width: 768px) { .service-detail-block.reverse .sdb-image { order: -1; } }
.sdb-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--light-gray);
}
.sdb-image img { width: 100%; height: 100%; object-fit: cover; }
.sdb-content .service-icon { margin-bottom: 1rem; }
.sdb-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.sdb-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.sdb-list li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 0.25rem; }

/* === FEATURES / WHY US === */
.features-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201,150,59,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  border: 1px solid rgba(201,150,59,0.25);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-text h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.feature-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.7; }

/* === VALUES === */
.values-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(41,66,108,0.1);
  transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); border-color: rgba(201,150,59,0.4); }
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--dark);
}
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* === MISSION/VISION CARDS === */
.mission-vision { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .mission-vision { grid-template-columns: 1fr 1fr; } }

.mv-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.mv-mission { background: var(--primary); }
.mv-vision { background: var(--gold); }
.mv-card .mv-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
  display: block;
}
.mv-mission .mv-label { color: rgba(255,255,255,0.55); }
.mv-vision .mv-label { color: rgba(9,18,33,0.5); }
.mv-card h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.mv-mission h2 { color: var(--white); }
.mv-vision h2 { color: var(--dark); }
.mv-card p { font-size: 0.92rem; line-height: 1.8; margin: 0; }
.mv-mission p { color: rgba(255,255,255,0.8); }
.mv-vision p { color: rgba(9,18,33,0.75); }
.mv-number {
  position: absolute;
  bottom: -1.5rem; right: 1rem;
  font-family: var(--font-heading);
  font-size: 9rem;
  font-weight: 900;
  opacity: 0.06;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.mv-mission .mv-number { color: var(--white); }
.mv-vision .mv-number { color: var(--dark); }

/* === TEAM GRID === */
.team-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo { aspect-ratio: 1; overflow: hidden; background: var(--light-gray); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 1.5rem; text-align: center; }
.team-info h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: block;
}
.team-info p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

/* === TESTIMONIALS === */
.testimonial-wrapper { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-slide {
  min-width: 100%;
  padding: 0 0.75rem;
}
@media (min-width: 768px) { .testimonial-slide { min-width: 50%; } }
@media (min-width: 992px) { .testimonial-slide { min-width: 33.333%; } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.75rem; right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
}
.t-stars { display: flex; gap: 0.2rem; color: var(--gold); margin-bottom: 0.75rem; font-size: 0.95rem; }
.t-text { font-style: italic; color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1.5rem; line-height: 1.8; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--light-gray);
  overflow: hidden;
  flex-shrink: 0;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.t-name { font-weight: 700; font-size: 0.9rem; }
.t-title { font-size: 0.78rem; color: var(--text-muted); }

/* Slider controls */
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.slider-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.slider-btn svg { width: 18px; height: 18px; }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(9,18,33,0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* === FAQ ACCORDION === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(41,66,108,0.14); border-radius: var(--radius); margin-bottom: 0.6rem; overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
}
.faq-question:hover { background: var(--off-white); }
.faq-question[aria-expanded="true"] { background: var(--primary); color: var(--white); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(201,150,59,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem; font-weight: 700; line-height: 1;
  transition: var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 1.1rem 1.4rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid rgba(41,66,108,0.08);
}
.faq-answer-inner p:last-child { margin: 0; }

/* FAQ Categories */
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(201,150,59,0.25);
  display: block;
}

/* === CONTACT === */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 5fr 7fr; } }

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201,150,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contact-info-card h3 { color: var(--gold); margin-bottom: 0.4rem; font-size: 1.3rem; }
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.75; }
.contact-items { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.9rem; }
.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(201,150,59,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid rgba(201,150,59,0.2);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-text small {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.contact-item-text a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.contact-item-text a:hover { color: var(--gold); }
.contact-item-text p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.contact-social-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-social-row p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 0.75rem; }
.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.social-link svg { width: 17px; height: 17px; }
.social-link-dark {
  background: rgba(9,18,33,0.08);
  color: var(--dark);
  border-color: rgba(9,18,33,0.2);
}
.social-link-dark:hover { background: var(--dark); color: var(--gold); border-color: var(--dark); }

/* Map */
.map-container { border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; height: 260px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* === FORMS === */
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }
.form-title { font-size: 1.3rem; margin-bottom: 0.4rem; }
.form-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }
.form-grid { display: grid; gap: 1.1rem; }
.col-2 { grid-template-columns: 1fr 1fr; }
.col-3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 639px) { .col-2, .col-3 { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.req { color: var(--gold); }
.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(41,66,108,0.22);
  border-radius: var(--radius);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(41,66,108,0.1);
}
.form-control::placeholder { color: #b0aebf; }
.form-control.error { border-color: #dc3545; }
textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2329426c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field-error { color: #dc3545; font-size: 0.78rem; margin-top: 0.2rem; display: block; }

/* File upload */
.file-upload-wrap { position: relative; }
.file-upload-label {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.7rem 1rem;
  border: 1.5px dashed rgba(41,66,108,0.28);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: var(--off-white);
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 44px;
}
.file-upload-label:hover { border-color: var(--primary); background: rgba(41,66,108,0.04); }
.file-upload-label svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.file-name { font-size: 0.82rem; }
input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

/* Form Checkbox */
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  accent-color: var(--primary);
  margin-top: 0.2rem;
  cursor: pointer;
}
.form-check label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
}
.form-check label a { color: var(--primary); text-decoration: underline; }

/* Honeypot */
.hp-field { display: none !important; visibility: hidden !important; }

/* Alerts */
.form-alert {
  display: none;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.form-alert.show { display: flex; }
.form-alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 0.05rem; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* === BLOG === */
.blog-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--light-gray); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 0.4rem; }
.blog-title { font-size: 1.05rem; margin-bottom: 0.65rem; }
.blog-title a { color: var(--dark); }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; font-size: 0.78rem; color: var(--text-muted); }
.blog-meta span { display: flex; align-items: center; gap: 0.3rem; }
.blog-meta svg { width: 13px; height: 13px; }

/* Blog Post */
.blog-featured { aspect-ratio: 16/6; overflow: hidden; border-radius: var(--radius-lg); margin-bottom: 2rem; background: var(--light-gray); }
.blog-featured img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-content { max-width: 760px; margin: 0 auto; }
.blog-post-content h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.blog-post-content p { color: var(--text-muted); margin-bottom: 1rem; }

/* === IMAGE GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
  background: var(--light-gray);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(9,18,33,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  color: var(--white);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 32px; height: 32px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-img-wrap img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); display: block; }
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  width: 34px; height: 34px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.1rem; font-weight: 700; line-height: 1;
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #162945 50%, var(--primary) 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -5%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(201,150,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -5%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(41,66,108,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 0.9rem; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-section h2 { position: relative; z-index: 1; }
.cta-section p { position: relative; z-index: 1; }

/* === APPLY / POSITIONS === */
.positions-grid { display: grid; gap: 1.1rem; }
.position-card {
  background: var(--white);
  border: 1px solid rgba(41,66,108,0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.position-card:hover { box-shadow: var(--shadow); border-color: rgba(41,66,108,0.35); }
.pos-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.pos-icon svg { width: 22px; height: 22px; }
.pos-info h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.pos-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin: 0.4rem 0 0.65rem; }
.tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: var(--off-white);
  color: var(--primary);
  border: 1px solid rgba(41,66,108,0.2);
}
.tag-gold { background: rgba(201,150,59,0.12); color: var(--brown); border-color: rgba(201,150,59,0.35); }
.pos-info > p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* === FOOTER === */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4.5rem 0 0; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.8; margin-bottom: 1.25rem; }
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.65rem;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  transition: var(--transition);
  padding: 0.25rem 0;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.footer-links a:hover { color: var(--gold); padding-left: 0.35rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; }
.footer-contact-item svg { width: 15px; height: 15px; color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item address { color: rgba(255,255,255,0.6); font-style: normal; line-height: 1.6; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1.25rem; }

.footer-bottom {
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }

/* === BACK TO TOP === */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,150,59,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 800;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--dark); color: var(--gold); }
.back-to-top svg { width: 20px; height: 20px; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === LEGAL PAGES === */
.legal-content { max-width: 820px; margin: 0 auto; padding: 4rem 0 5rem; }
.legal-update {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.legal-content h2 { font-size: 1.4rem; color: var(--primary); margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-content h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: 0.6rem; }
.legal-content p { color: var(--text-muted); margin-bottom: 1rem; }
.legal-content ul, .legal-content ol { padding-left: 1.5rem; color: var(--text-muted); margin-bottom: 1rem; }
.legal-content li { margin-bottom: 0.4rem; }

/* === 404 PAGE === */
.error-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, #162945 50%, var(--primary) 100%);
  padding: 2rem;
  padding-top: var(--header-height);
}
.error-inner { position: relative; z-index: 1; }
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(7rem, 20vw, 14rem);
  font-weight: 900;
  color: rgba(201,150,59,0.15);
  line-height: 1;
  margin-bottom: -1rem;
}
.error-page h1 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.4rem); margin-bottom: 0.9rem; }
.error-page p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 480px; margin: 0 auto 2rem; }
.error-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* === UTILITY === */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.gap-2 { gap: 1rem; }
.d-none { display: none; }
hr.gold { border: none; border-top: 2px solid rgba(201,150,59,0.3); margin: 2rem 0; }

/* === PRINT STYLES === */
@media print {
  .site-header,
  .mobile-nav,
  .nav-toggle,
  .site-footer,
  .back-to-top,
  .hero-scroll,
  .slider-controls,
  .cta-section,
  .gallery-grid,
  .lightbox,
  .map-container,
  .btn:not(.btn-print) { display: none !important; }

  body { font-size: 11pt; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; }
  h1, h2, h3 { color: #000; page-break-after: avoid; }
  p, li { page-break-inside: avoid; }
  .section { padding: 1.5rem 0; }
  .container { max-width: 100%; padding: 0; }
  .reveal { opacity: 1; transform: none; }
  @page { margin: 2cm; }
}
