/* ============================================================
   JKING HOLDINGS LLC — Main Stylesheet
   ============================================================ */

@font-face {
  font-family: 'FuturaPT';
  src: url('FUTURAPTEXTRABOLD.OTF') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Jking';
  src: url('Jking.OTF') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #B8960C;
  --gold-light: #D4A017;
  --gold-pale: #F5EDD0;
  --black: #0A0A0A;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --muted: #7A7A7A;
  --border: #E8E8E8;
  --bg: #FFFFFF;
  --bg-off: #F9F9F7;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --radius: 12px;
  --radius-sm: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.06);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--dark); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea, input, select { font-family: inherit; }

/* ── Typography ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--black);
  font-weight: 400;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
}
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.label--light { color: rgba(255,255,255,0.6); }
.body-large { font-size: 1.15rem; color: var(--mid); line-height: 1.75; margin-bottom: 1.25rem; }
.body-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,150,12,0.35); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: filter var(--transition);
}
.nav:not(.scrolled) .nav-logo img { filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--mid); }
.nav.scrolled .nav-links a:hover { color: var(--black); }
.nav-cta {
  padding: 0.6rem 1.4rem !important;
  border-radius: 50px !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
}
.nav.scrolled .nav-cta {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.nav-cta:hover { background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-cta:hover { background: var(--gold-pale); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; transition: var(--transition); }
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
}
.nav-mobile a {
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  scale: 1.05;
  transition: scale 8s ease-out;
}
.hero-img.loaded { scale: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(10,6,0,0.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  padding-top: 72px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(184,150,12,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  background: rgba(184,150,12,0.08);
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Jking', var(--font-sans);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 1.1;
  color: #fff;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-accent {
  color: #fff;
  font-style: normal;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.hero-scroll-line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: slide 2s ease-in-out infinite;
}

/* ── ABOUT ── */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-num { font-family: var(--font-serif); font-size: 1.4rem; color: var(--black); }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ── FOCUS ── */
.focus { background: var(--bg-off); }
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section-header .label { display: block; }
.section-header .section-title { margin: 0 auto 1rem; }
.section-header .section-sub { margin: 0 auto; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.focus-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.focus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,150,12,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.focus-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184,150,12,0.2);
  transform: translateY(-3px);
}
.focus-card:hover::before { opacity: 1; }
.focus-card--highlight {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.focus-card--highlight h3 { color: #fff; }
.focus-card--highlight p { color: rgba(255,255,255,0.6); }
.focus-card--highlight .focus-icon { color: var(--gold); }
.focus-card--highlight:hover { border-color: var(--gold); }
.focus-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.focus-icon svg { width: 100%; height: 100%; }
.focus-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.focus-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
}
.focus-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: gap var(--transition);
}
.focus-link:hover { opacity: 0.8; }

/* ── VISION ── */
.vision {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184,150,12,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.vision-inner { max-width: 820px; margin: 0 auto; }
.vision-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.45;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  margin: 0 0 1.5rem;
}
.vision-attr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── WHY MONGOLIA ── */
.why { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.why-left .section-title { margin-bottom: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { padding-top: 0; }
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
  flex-shrink: 0;
  width: 24px;
}
.why-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact { background: var(--bg-off); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-left .section-title { margin-bottom: 1.25rem; }
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--mid);
}
.contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,12,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border); }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 4rem 0 2.5rem; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-logo { height: 30px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); max-width: 30ch; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.25rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes slide {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .why-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 680px) {
  .focus-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stat-divider { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; color: #fff; }
  .nav.scrolled .nav-hamburger { color: var(--dark); }
  .nav-mobile.open { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .footer-inner { flex-direction: column; }
}
