/* ============================================================
   Golden Wheat Ventures — Shared Stylesheet
   Palette drawn from brand logo: deep navy night sky + radiant gold
   ============================================================ */

:root {
  --navy-950: #060d1a;
  --navy-900: #0a1428;
  --navy-800: #101f3c;
  --navy-700: #182b4f;
  --navy-600: #22396a;
  --gold-300: #ffe9a8;
  --gold-400: #f7d060;
  --gold-500: #e8b62c;
  --gold-600: #c9941a;
  --gold-700: #a0730f;
  --cream: #faf6ec;
  --ink: #1c2333;
  --text-light: #e8ecf4;
  --text-dim: #a8b2c8;
  --radius: 14px;
  --shadow-lg: 0 18px 50px rgba(3, 8, 20, 0.55);
  --shadow-sm: 0 6px 18px rgba(3, 8, 20, 0.35);
  --gold-grad: linear-gradient(135deg, #f7d060 0%, #e8b62c 45%, #c9941a 100%);
  --font-display: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy-950);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-400); text-decoration: none; }
a:hover { color: var(--gold-300); }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 182, 44, 0.25);
}

.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  white-space: nowrap;
}

.nav-brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover { background: rgba(232, 182, 44, 0.12); color: var(--gold-300); }

.nav-links a.active {
  background: var(--gold-grad);
  color: var(--navy-950);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn-gold {
  background: var(--gold-grad);
  color: var(--navy-950);
  box-shadow: 0 6px 20px rgba(232, 182, 44, 0.35);
}

.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); color: var(--navy-950); }

.btn-outline {
  background: transparent;
  color: var(--gold-400);
  border: 2px solid var(--gold-500);
}

.btn-outline:hover { background: rgba(232, 182, 44, 0.12); color: var(--gold-300); }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--gold-400);
  text-align: center;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 720px;
  margin: 0 auto 2.8rem;
  font-size: 1.05rem;
}

.gold-rule {
  width: 90px;
  height: 3px;
  margin: 0.9rem auto 1.4rem;
  background: var(--gold-grad);
  border-radius: 2px;
}

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(232, 182, 44, 0.18);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 182, 44, 0.55);
  box-shadow: var(--shadow-lg);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(232, 182, 44, 0.25);
  padding: 2.6rem 0 1.6rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 1.8rem;
}

.site-footer h4 {
  font-family: var(--font-display);
  color: var(--gold-400);
  margin-bottom: 0.7rem;
  letter-spacing: 0.03em;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: var(--text-dim); }
.site-footer a:hover { color: var(--gold-300); }

.footer-bottom {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.dim { color: var(--text-dim); }

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(232, 182, 44, 0.15);
  color: var(--gold-400);
  border: 1px solid rgba(232, 182, 44, 0.4);
}

@media (max-width: 760px) {
  .site-nav .nav-inner { flex-direction: column; padding-bottom: 0.6rem; }
  .nav-links { justify-content: center; }
}
