/* ============================================================
   GoldSRD — rebuilt site styles
   Brand: navy + gold | Roboto (headings) / Open Sans (body)
   ============================================================ */

:root {
  --navy-900: #0e1e33;
  --navy-800: #142a47;
  --navy-700: #1f3a5f;
  --navy-100: #e8edf4;
  --gold-600: #b98a35;
  --gold-500: #c9a04e;
  --gold-400: #d4b06a;
  --gold-100: #f7f0e2;
  --ink: #1c2733;
  --ink-soft: #55616e;
  --paper: #ffffff;
  --paper-soft: #f6f8fa;
  --line: #e3e8ee;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(14, 30, 51, 0.08);
  --shadow-md: 0 10px 30px rgba(14, 30, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 30, 51, 0.16);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", -apple-system, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: "Roboto", "Open Sans", sans-serif;
  color: var(--navy-800);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

section { padding: 88px 0; }

/* ---------- kicker + section headers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold-500); }

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 17.5px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::before { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: "Roboto", sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  padding: 15px 30px; border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold-500); color: #fff; }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-outline-navy { border-color: var(--navy-800); color: var(--navy-800); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-800); color: #fff; }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 9px 0;
}
.topbar a:hover { color: var(--gold-400); }
.topbar-contacts { display: flex; gap: 26px; align-items: center; }
.topbar-contacts a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-social { display: flex; gap: 18px; align-items: center; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.logo img { height: 46px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: block; padding: 10px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 15px; font-weight: 500; color: var(--navy-800);
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav > li > a:hover, .nav > li > a.active { color: var(--gold-600); background: var(--gold-100); }

.nav .dropdown {
  position: absolute; top: calc(100% + 8px); left: 8px;
  min-width: 250px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all 0.2s ease;
}
.nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px; font-size: 14.5px; color: var(--ink);
  border-radius: 6px;
}
.dropdown a:hover { background: var(--paper-soft); color: var(--gold-600); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-close { display: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; transition: 0.25s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(100deg, rgba(14,30,51,0.96) 0%, rgba(20,42,71,0.88) 46%, rgba(20,42,71,0.45) 100%),
              url("../assets/img/danny-stage.jpg") center 28% / cover no-repeat;
  color: #fff;
  padding: 0;
}
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  min-height: 640px; padding: 96px 0;
}
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero h1 .gold { color: var(--gold-400); }
.hero p.lede {
  font-size: 18.5px; line-height: 1.7;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 16px;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); }

/* ---------- pillars ---------- */
.pillars { background: var(--paper); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pillar-card .thumb { position: relative; height: 200px; overflow: hidden; }
.pillar-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pillar-card:hover .thumb img { transform: scale(1.045); }
.pillar-card .thumb .tag {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--navy-900); color: var(--gold-400);
  font-family: "Roboto", sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 5px;
}
.pillar-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pillar-card h3 { font-size: 21px; font-weight: 700; }
.pillar-card p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.pillar-card .link {
  font-family: "Roboto", sans-serif; font-size: 14.5px; font-weight: 600;
  color: var(--gold-600); display: inline-flex; align-items: center; gap: 7px;
}
.pillar-card .link:hover { gap: 11px; }

/* ---------- stats band ---------- */
.stats { background: var(--navy-800); color: #fff; padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num {
  font-family: "Roboto", sans-serif;
  font-size: clamp(34px, 4vw, 46px); font-weight: 700; color: var(--gold-400);
  line-height: 1;
}
.stat .label { margin-top: 10px; font-size: 14.5px; color: rgba(255,255,255,0.78); }

/* ---------- course categories ---------- */
.courses { background: var(--paper-soft); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover { border-color: var(--gold-400); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card .icon {
  width: 44px; height: 44px; border-radius: 9px;
  background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px; font-size: 20px;
}
.cat-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.cat-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- offerings ---------- */
.offerings { background: var(--paper); }
.offer-list { display: grid; gap: 16px; }
.offer-card {
  display: grid; grid-template-columns: 118px 1fr auto;
  align-items: center; gap: 26px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.offer-card:hover { border-color: var(--gold-400); box-shadow: var(--shadow-md); }
.offer-date {
  text-align: center;
  background: var(--navy-800); color: #fff;
  border-radius: 9px; padding: 14px 10px;
}
.offer-date .month { font-family: "Roboto", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; color: var(--gold-400); text-transform: uppercase; }
.offer-date .days { font-family: "Roboto", sans-serif; font-size: 20px; font-weight: 700; line-height: 1.25; }
.offer-info h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 5px; }
.offer-info .meta { font-size: 14px; color: var(--ink-soft); display: flex; gap: 18px; flex-wrap: wrap; }
.offer-info .meta strong { color: var(--gold-600); font-weight: 700; }
.offer-cta { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.offer-cta .price { font-family: "Roboto", sans-serif; font-size: 22px; font-weight: 700; color: var(--navy-800); }
.offer-cta .price small { font-size: 13px; color: var(--ink-soft); font-weight: 400; }
.offerings-note { margin-top: 26px; text-align: center; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- process ---------- */
.process { background: var(--navy-900); color: #fff; }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: rgba(255,255,255,0.75); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
}
.step .step-num {
  font-family: "Roboto", sans-serif;
  font-size: 54px; font-weight: 700; line-height: 1;
  color: var(--gold-400);
  margin-bottom: 18px;
}
.step h3 { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 15px; color: rgba(255,255,255,0.75); }

/* ---------- audiences ---------- */
.audiences { background: var(--paper); }
.aud-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.aud-card {
  border-left: 3px solid var(--gold-500);
  background: var(--paper-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 24px;
}
.aud-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.aud-card p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- about / founder ---------- */
.about { background: var(--paper-soft); }
.about-grid { display: grid; grid-template-columns: 460px 1fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-photo .badge {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--gold-500); color: #fff;
  border-radius: 9px; padding: 16px 20px;
  font-family: "Roboto", sans-serif; font-weight: 700; font-size: 14px;
  line-height: 1.35;
  box-shadow: var(--shadow-md);
}
.about-copy h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 16px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.about-points { margin: 22px 0 30px; display: grid; gap: 12px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.about-points .tick {
  flex: none; width: 22px; height: 22px; margin-top: 2px;
  border-radius: 50%; background: var(--gold-100); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}

/* ---------- team ---------- */
.team { background: var(--paper); }
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.member { text-align: center; }
.member .photo {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 13px;
  aspect-ratio: 4 / 4.6; background: var(--navy-100);
  box-shadow: var(--shadow-sm);
}
.member .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.35s ease; }
.member:hover .photo img { transform: scale(1.05); }
.member h3 { font-size: 15.5px; font-weight: 700; }
.member p { font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; line-height: 1.45; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(100deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 76px 0;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 10px; }
.cta-inner p { color: rgba(255,255,255,0.8); max-width: 540px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); font-size: 14.5px; }
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px;
  padding: 64px 0 48px;
}
.footer-main h4 {
  color: #fff; font-size: 15px; font-weight: 700;
  margin-bottom: 18px; letter-spacing: 0.04em;
}
.footer-main ul { display: grid; gap: 10px; }
.footer-main a:hover { color: var(--gold-400); }
.footer-brand img { height: 44px; margin-bottom: 18px; }
.footer-brand p { max-width: 300px; font-size: 14px; line-height: 1.7; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: rgba(255,255,255,0.5);
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1060px) {
  .pillar-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .aud-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { max-width: 460px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  section { padding: 64px 0; }
  .topbar-inner { justify-content: center; }
  .topbar-social { display: none; }
  .nav {
    position: fixed; inset: 0; top: 0; z-index: 200;
    background: var(--navy-900);
    flex-direction: column; justify-content: center; align-items: center; gap: 6px;
    opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
  }
  .nav.open { opacity: 1; visibility: visible; }
  .nav > li > a { color: #fff; font-size: 20px; padding: 12px 20px; }
  .nav > li > a:hover { background: none; color: var(--gold-400); }
  .nav .dropdown { display: none; }
  .nav-close {
    display: block;
    position: absolute; top: 22px; right: 26px;
    background: none; border: none; color: #fff; font-size: 30px; cursor: pointer;
  }
  .nav-toggle { display: block; }
  .header-cta .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 76px 0; }
  .pillar-grid, .process-grid, .aud-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .offer-card { grid-template-columns: 1fr; gap: 16px; }
  .offer-date { width: 118px; }
  .offer-cta { align-items: flex-start; text-align: left; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
}
