/* ============================================================================
   Golden Goose Management — brand stylesheet
   Navy + gold identity (matches the internal cockpit). Cormorant Garamond
   display serif + Inter body, both from Google Fonts.
   ========================================================================== */

:root {
  --navy-deep: #070f24;
  --navy: #0d1b3a;
  --navy-line: #1c2c52;
  --gold: #c9a84a;
  --gold-bright: #e6c560;
  --text: #e8ebf2;
  --text-dim: #8b93a7;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy-deep);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 0.4em;
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.gold { color: var(--gold-bright); }
.dim { color: var(--text-dim); }

/* --- Wordmark / crest ---------------------------------------------------- */
.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark .crest { width: 26px; height: 26px; }
.wordmark .name {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 17px;
  color: var(--gold-bright);
}

/* --- Nav ----------------------------------------------------------------- */
header.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 15, 36, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--navy-line);
}
.nav .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding-top: 16px; padding-bottom: 16px;
}
.nav-links { display: flex; flex-wrap: wrap; gap: 22px; }
.nav-links a {
  color: var(--text-dim); font-size: 13px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; text-align: center;
  padding: 120px 24px 100px;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(201,168,74,0.10), transparent 60%),
    var(--navy-deep);
  border-bottom: 1px solid var(--navy-line);
}
.hero .crest-lg { width: 68px; height: 68px; margin: 0 auto 26px; display: block; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); margin-bottom: 18px; }
.hero .lede {
  max-width: 640px; margin: 0 auto 34px;
  font-size: clamp(17px, 2.2vw, 21px); color: var(--text-dim);
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  transition: transform .15s ease, background .15s ease;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-bright); color: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--navy-line); color: var(--text); margin-left: 10px; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* --- Sections ------------------------------------------------------------ */
section.block { padding: 84px 0; border-bottom: 1px solid var(--navy-line); }
section.block h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 22px; }
section.block p { color: var(--text-dim); max-width: 720px; }
section.block p + p { margin-top: 18px; }

/* --- Cards --------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.card {
  background: var(--navy); border: 1px solid var(--navy-line);
  border-top: 3px solid var(--gold); border-radius: 12px;
  padding: 28px 24px; transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-top-color: var(--gold-bright); }
.card h3 { font-size: 24px; color: var(--gold-bright); margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--text-dim); margin: 0; }

/* --- Ladder (time-horizon) ---------------------------------------------- */
.ladder { display: grid; gap: 14px; margin-top: 36px; }
.rung {
  display: grid; grid-template-columns: 160px 1fr; gap: 18px; align-items: baseline;
  padding: 18px 22px; background: var(--navy); border: 1px solid var(--navy-line);
  border-left: 3px solid var(--gold); border-radius: 10px;
}
.rung .label { font-family: "Cormorant Garamond", serif; font-size: 22px; color: var(--gold-bright); }
.rung .desc { color: var(--text-dim); font-size: 15px; }
@media (max-width: 560px) { .rung { grid-template-columns: 1fr; gap: 4px; } }

/* --- Contact / form ------------------------------------------------------ */
.form-wrap { margin-top: 32px; }
.form-wrap iframe { width: 100%; max-width: 680px; border: 1px solid var(--navy-line); border-radius: 12px; background: #fff; }
.contact-meta { margin-top: 28px; }
.contact-meta a { font-weight: 600; }

/* --- Access (private) ---------------------------------------------------- */
.gate { text-align: center; padding: 100px 24px; }
.gate .lock { font-size: 40px; color: var(--gold); }
.linklist { list-style: none; padding: 0; margin: 30px auto 0; max-width: 520px; }
.linklist li { border: 1px solid var(--navy-line); border-radius: 10px; padding: 16px 20px; margin-bottom: 12px; background: var(--navy); text-align: left; }
.linklist .muted { color: var(--text-dim); font-size: 13px; }

/* --- Footer -------------------------------------------------------------- */
footer.foot { padding: 48px 0 60px; color: var(--text-dim); font-size: 13px; }
footer.foot .row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
footer.foot .foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
footer.foot .foot-links a { color: var(--text-dim); }
footer.foot .foot-links a:hover { color: var(--gold-bright); }
footer.foot .disclaimer { margin-top: 24px; max-width: 780px; line-height: 1.6; font-size: 12px; color: #5f6880; }

/* --- utility ------------------------------------------------------------- */
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.hairline { height: 1px; background: var(--navy-line); border: 0; margin: 0; }
