@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-deep: #061611;
  --bg-emerald: #0b2820;
  --bg-darker: #030d0a;
  
  --gold-pure: #d4a84f;
  --gold-light: #f5e2b8;
  --gold-metallic: linear-gradient(135deg, #f7e6c2 0%, #d4a84f 55%, #ab802c 100%);
  --gold-glow: rgba(212, 168, 79, 0.22);
  
  --text-ivory: #faf8f5;
  --text-body: rgba(250, 248, 245, 0.76);
  --text-muted: rgba(250, 248, 245, 0.46);
  
  --border-hairline: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 168, 79, 0.28);

  /* Modern Premium Font System */
  --font-display: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-ivory);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
}

/* ----------------------------------------------------
   SITE HEADER & NAVIGATION
---------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text-ivory);
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.85;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-ivory);
  opacity: 0.82;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold-pure);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold-light);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 9px 20px;
  opacity: 1;
  color: var(--gold-light);
  background: rgba(212, 168, 79, 0.06);
  transition: all 0.3s ease;
}

.nav-contact::after {
  display: none;
}

.nav-contact:hover {
  background: rgba(212, 168, 79, 0.18);
  border-color: var(--gold-pure);
  color: #ffffff;
  box-shadow: 0 0 16px var(--gold-glow);
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  background: 
    linear-gradient(145deg, rgba(5, 18, 14, 0.94) 0%, rgba(10, 36, 28, 0.82) 45%, rgba(4, 14, 11, 0.96) 100%),
    url("https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?auto=format&fit=crop&w=2200&q=85") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Ambient Geometric Accents */
.hero-section::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(212, 168, 79, 0.11);
  border-radius: 50%;
  right: -240px;
  top: -140px;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  left: -160px;
  bottom: 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 960px;
}

/* Headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
  text-wrap: balance;
}

.desktop-only {
  display: block;
}

/* Description */
.hero-description {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.8;
  color: var(--text-body);
  max-width: 700px;
  margin-bottom: 48px;
  letter-spacing: 0.005em;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------
   BUTTON SYSTEM
---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  display: inline-block;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.btn-primary {
  background: var(--gold-metallic);
  color: #051610;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--gold-glow);
  filter: brightness(1.05);
}

.btn-primary:hover .btn-arrow {
  transform: translateY(2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-ivory);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   DEDICATED COMING SOON SECTION
---------------------------------------------------- */
.coming-soon-section {
  position: relative;
  background: 
    radial-gradient(circle at 50% 0%, rgba(212, 168, 79, 0.1) 0%, transparent 65%),
    linear-gradient(180deg, #071913 0%, #030d0a 100%);
  padding: 140px 0 150px;
  border-top: 1px solid rgba(212, 168, 79, 0.18);
  text-align: center;
  overflow: hidden;
}

.coming-soon-container {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.emblem-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.emblem-img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.emblem-img:hover {
  transform: scale(1.06);
}

.gold-divider {
  width: 55px;
  height: 1.5px;
  background: var(--gold-metallic);
  margin: 0 auto 28px;
}

.coming-soon-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 22px;
}

.coming-soon-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.8;
  color: var(--text-body);
  max-width: 640px;
  margin: 0 auto 42px;
  letter-spacing: 0.005em;
}

.contact-action {
  display: flex;
  justify-content: center;
}

.btn-contact {
  padding: 17px 38px;
}

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

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 32px 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-hairline);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------- */
@media (max-width: 860px) {
  .site-header {
    padding: 24px 0;
  }

  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links {
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-section {
    padding: 130px 0 80px;
    background-attachment: scroll;
  }

  .desktop-only {
    display: inline;
  }

  .coming-soon-section {
    padding: 100px 0;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 36px);
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .coming-soon-title {
    font-size: 42px;
  }

  .coming-soon-note {
    font-size: 15px;
  }

  .btn-contact {
    width: 100%;
  }
}
