/* ==========================================================================
   HIGH ACHIEVERS' LEAGUE — Brand stylesheet
   Built to match Section 4 (Visual Identity) of the HAL Marketing README:
   gold/amber gradient system, cream backgrounds, condensed bold headlines,
   script accents used sparingly, black footer bar on every page.
   ========================================================================== */

:root {
  /* Color palette — navy and white base, with true gold reserved for buttons and bullets only */
  --navy:       #0b1f3a;
  --navy-deep:  #081729;
  --navy-mid:   #16315a;
  --navy-light: #2c4a78;
  --black:      #0b1f3a;
  --cream:      #ffffff;
  --champagne:  #f3f5f8;   /* very light cool gray-blue, used only for subtle section separation */
  --white:      #ffffff;
  --red-accent: #b3392c;
  --gray-text:  #4a4a4a;
  --whatsapp-green: #22c55e;
  --bronze:     #0b1f3a; /* legacy variable name kept for compatibility; now resolves to navy */
  --gold-light: #2c4a78;
  --gold-mid:   #16315a;

  /* True gold — logo color — used ONLY for buttons and bullet/checkmark accents */
  --accent-gold-light: #d9b35c;
  --accent-gold-mid:   #c89a3e;
  --accent-gold-deep:  #a87a2e;
  --accent-gold-gradient: linear-gradient(100deg, var(--accent-gold-light) 0%, var(--accent-gold-mid) 55%, var(--accent-gold-deep) 100%);

  --gold-gradient: linear-gradient(100deg, var(--navy-light) 0%, var(--navy) 60%, var(--navy-deep) 100%);
  --bg-gradient: var(--white);
  --navy-gradient: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);

  /* Type — elegant serif display, unchanged from prior pass */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-script: 'Playfair Display', Georgia, serif;

  --container: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--bg-gradient);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

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

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

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: .01em;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: .75em;
  display: inline-block;
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: italic;
  font-size: 1.05em;
  color: var(--white);
}

p.lede {
  font-size: 1.15rem;
  color: var(--gray-text);
  max-width: 640px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary {
  background: var(--accent-gold-gradient);
  color: var(--navy);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(168,122,46,.35); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
}
.btn-whatsapp:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid rgba(11,31,58,.14);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 44px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--black);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-text);
}
.main-nav a:hover, .main-nav a.active { color: var(--bronze); }
.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(11,31,58,.14);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.trust-strip {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,31,58,.2);
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-size: .85rem;
  color: var(--gray-text);
  font-weight: 600;
}
.trust-strip span::before { content: "✓ "; color: var(--accent-gold-deep); }

.hero-portrait {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(20,16,8,.12);
  text-align: center;
}
.hero-portrait img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 4px solid var(--navy);
}
.hero-portrait .name { font-weight: 800; margin-top: 14px; }
.hero-portrait .role { color: var(--gray-text); font-size: .88rem; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 360px; margin: 0 auto; }
}

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--white);
  border-radius: 12px;
  margin-top: 48px;
  padding: 32px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  box-shadow: 0 10px 30px rgba(20,16,8,.06);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .label { font-size: .8rem; color: var(--gray-text); margin-top: 4px; }

@media (max-width: 700px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
}

/* ---------- Sections ---------- */
section { padding: 64px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards / grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(20,16,8,.06);
}
.card h3 { font-size: 1.05rem; margin-bottom: .4em; }
.card p { color: var(--gray-text); font-size: .94rem; margin: 0; }
.card .icon-tag {
  display: inline-flex;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--gold-gradient);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--black);
}

@media (max-width: 880px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Destinations ---------- */
.destinations-band {
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 40px;
}
.flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}
.flag-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  font-size: .92rem;
  padding: 10px 18px;
  border-radius: 999px;
}
.destinations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.destinations-grid ul { padding-left: 0; list-style: none; margin: 0; }
.destinations-grid li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  color: #ddd6c4;
}
.destinations-grid li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent-gold-light);
}
@media (max-width: 800px) {
  .destinations-grid { grid-template-columns: 1fr; }
}

/* ---------- Process steps ---------- */
.steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-mid);
  margin-bottom: 10px;
}
.step h4 { font-size: 1rem; margin-bottom: .35em; }
.step p { font-size: .9rem; color: var(--gray-text); }

@media (max-width: 880px) {
  .steps-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps-list { grid-template-columns: 1fr; }
}

/* ---------- Founder section ---------- */
.founder-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.founder-photo {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 14px 36px rgba(20,16,8,.1);
}
.founder-photo img { border-radius: 8px; aspect-ratio: 4/5; object-fit: cover; }
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.founder-grid ul { padding-left: 0; list-style: none; color: var(--gray-text); font-size: .95rem; }
.founder-grid li {
  margin-bottom: 8px;
  padding-left: 26px;
  position: relative;
}
.founder-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-gold-deep);
  font-weight: 800;
}

@media (max-width: 880px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 320px; margin: 0 auto; }
}

/* ---------- Testimonial ---------- */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(20,16,8,.07);
  max-width: 760px;
  margin: 0 auto;
}
.stars { color: var(--accent-gold-mid); letter-spacing: .15em; margin-bottom: 16px; }
.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-style: normal;
  color: var(--black);
}
.testimonial-attrib { font-weight: 800; font-size: .95rem; }
.testimonial-attrib .sub { font-weight: 500; color: var(--gray-text); font-size: .85rem; display: block; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-grid .testimonial-card { padding: 28px; margin: 0; }
.testimonial-grid blockquote { font-size: .92rem; }

@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--gold-gradient);
  border-radius: 16px;
  padding: 56px 40px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cdd6e3; max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero-ctas { justify-content: center; }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--navy); }
.cta-band .eyebrow { color: #9fb2cc !important; }
.cta-band .btn-primary { background: var(--white); color: var(--navy); }
.cta-band .btn-primary:hover { box-shadow: 0 8px 20px rgba(0,0,0,.25); }

/* ---------- Tag rectangle (brand element) ---------- */
.tag-block {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 18px;
}

/* ---------- Footer ---------- */
.site-footer-top {
  background: var(--champagne);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { color: var(--gray-text); font-size: .9rem; max-width: 280px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: .92rem; }
.footer-col a { color: var(--gray-text); }
.footer-col a:hover { color: var(--bronze); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Required black contact bar — present on every page, per brand system */
.contact-bar {
  background: var(--black);
  color: var(--white);
  padding: 16px 0;
}
.contact-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .88rem;
  font-weight: 600;
}
.contact-bar-inner a { display: flex; align-items: center; gap: 8px; }
.contact-bar-inner .copyright { color: #999; font-weight: 400; font-size: .8rem; }

.icon { display: inline-flex; width: 18px; height: 18px; }

/* ---------- Page header (non-home pages) ---------- */
.page-hero {
  padding: 48px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--gray-text); }

/* ---------- Placeholder note (internal build markers — remove before launch) ---------- */
.build-note {
  background: #eef1f6;
  border: 1px dashed var(--navy-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .82rem;
  color: var(--navy);
  margin: 16px 0;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(20,16,8,.05);
  overflow: hidden;
}
.faq-q {
  padding: 18px 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: var(--gray-text);
  font-size: .94rem;
  transition: max-height .25s ease, padding .25s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.chev { transition: transform .2s ease; }

/* ---------- Generic form ---------- */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 12px 32px rgba(20,16,8,.08);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd2b8;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--cream);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--gray-text); margin-top: 14px; }

/* ---------- Misc page layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(20,16,8,.06);
}
.video-card iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.video-card .vcap { padding: 14px 16px; font-size: .9rem; font-weight: 700; }

@media (max-width: 880px) {
  .video-grid { grid-template-columns: 1fr; }
}

.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.social-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(20,16,8,.06);
  font-weight: 700;
  font-size: .9rem;
}
.social-card .icon-tag { margin: 0 auto 12px; }

@media (max-width: 880px) {
  .social-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .social-row { grid-template-columns: 1fr; }
}
