/* 
  MOUNT OLYMPOS
  Visual Identity: Deific Executive Luxury
  Concept: Private Swiss Bank meets Athenian Judicial Court
*/

:root {
  --color-marble-white: #fdfdfd;
  --color-marble-shadow: #f5f7f9;
  --color-navy: #0a192f;
  --color-royal-blue: #162a44;
  --color-gold: #c5a059;
  --color-gold-light: #e2c28d;
  --color-text-main: #2c3e50;
  --color-text-muted: #546e7a;
  --color-border: rgba(197, 160, 89, 0.2);

  --font-serif: "Cinzel", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-width: 1100px;
  --transition: all 0.35s ease;
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-lift: 0 20px 50px rgba(10, 25, 47, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-marble-white);
  color: var(--color-text-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

h1,
h2,
h3,
.brand,
.eyebrow {
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(253, 253, 253, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  color: var(--color-navy);
  font-weight: 700;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-main);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: #000;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: brightness(1.1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 25, 47, 0.88) 0%,
    rgba(10, 25, 47, 0.55) 40%,
    rgba(10, 25, 47, 0.15) 100%
  );
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.eyebrow {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  margin-bottom: 25px;
  display: block;
  text-shadow: none;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-copy {
  font-size: 1.1rem;
  margin-bottom: 45px;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.8;
}

.button-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 16px 32px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  border-radius: 2px;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: white;
}

.btn-outline:hover {
  border-color: white;
  background: white;
  color: var(--color-navy);
}

.trust-strip {
  background: var(--color-marble-shadow);
  padding: 30px 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.separator {
  opacity: 0.3;
}

.section {
  padding: 100px 0;
}

.marble-panel {
  background: var(--color-marble-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.deific-heading,
.section-title {
  font-size: 2.2rem;
  color: var(--color-navy);
  margin-bottom: 25px;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.text-center {
  text-align: center;
}

.intro-text {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: white;
  padding: 50px 40px;
  border-top: 4px solid var(--color-gold);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  border-radius: 0 0 4px 4px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.dark-panel {
  background: var(--color-navy);
  color: white;
}

.dark-panel .section-title {
  color: white;
  margin-bottom: 60px;
}

.pantheon-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 45px;
  transition: var(--transition);
}

.pantheon-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-gold);
}

.pantheon-card h3 {
  font-size: 1.4rem;
  color: var(--color-gold-light);
  margin-bottom: 5px;
}

.pantheon-card p {
  color: rgba(255, 255, 255, 0.72);
}

.role {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.5);
}

.demo-note {
  background: var(--color-marble-shadow);
}

.status-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  border: 1px solid var(--color-border);
  background: white;
  box-shadow: var(--shadow-soft);
}

.cta-section {
  text-align: center;
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--color-marble-white), #f0f2f5);
}

.cta-section p {
  margin-bottom: 40px;
  color: var(--color-text-muted);
}

.site-footer {
  background: #050c16;
  color: white;
  padding: 80px 0 50px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-brand .brand {
  color: white;
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-contact a {
  color: var(--color-gold-light);
  text-decoration: none;
  font-size: 0.9rem;
}

.copyright {
  margin-top: 20px;
  font-size: 0.7rem;
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .nav-links {
    gap: 22px;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .brand-lockup {
    font-size: 1.05rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding: 120px 0 90px;
  }

  .hero-bg img {
    opacity: 0.6;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 25, 47, 0.9) 0%,
      rgba(10, 25, 47, 0.72) 100%
    );
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-wrapper {
    flex-wrap: wrap;
    gap: 12px 20px;
    text-align: center;
  }

  .section {
    padding: 70px 0;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    padding: 36px 24px;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}