/* Riaz Khan — Executive Coach */
:root {
  --navy-900: #0a1420;
  --navy-800: #0e1a29;
  --navy-700: #101f33;
  --gold: #c9a45c;
  --gold-light: #e0be77;
  --gold-deep: #a9843f;
  --gold-ink: #a9843f;
  --ivory: #f5f2ea;
  --ink: #17253a;
  --text: #e8e6e0;
  --text-soft: #cfd6de;
  --text-muted: #b9c2cc;
  --text-faint: #6c7a8a;
  --hairline: rgba(201, 164, 92, 0.3);
  --hairline-soft: rgba(201, 164, 92, 0.25);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy-900);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; }
.container { max-width: 1400px; margin: 0 auto; padding-left: 52px; padding-right: 52px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold); color: var(--navy-900) !important;
  padding: 11px 22px;
  font-size: 13px; letter-spacing: 2px; font-weight: 700;
  border: none; cursor: pointer; font-family: var(--sans);
  transition: background 0.2s ease, filter 0.2s ease;
}
.btn:hover { background: var(--gold-light); }
.btn-lg { padding: 17px 36px; font-size: 13.5px; }
.btn-gold-shine {
  background: linear-gradient(105deg, #a9843f 0%, #c9a45c 30%, #f0d896 50%, #c9a45c 70%, #a9843f 100%);
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.6), 0 8px 24px rgba(201, 164, 92, 0.25);
}
.btn-gold-shine:hover { background: linear-gradient(105deg, #a9843f 0%, #c9a45c 30%, #f0d896 50%, #c9a45c 70%, #a9843f 100%); filter: brightness(1.12); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 52px;
  background: rgba(10, 20, 32, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav-brand { display: flex; align-items: baseline; gap: 12px; }
.nav-logo { font-weight: 700; letter-spacing: 3px; font-size: 15px; color: var(--ivory); }
.nav-logo span { color: var(--gold); }
.nav-tagline { font-size: 10.5px; letter-spacing: 2.5px; font-weight: 600; color: var(--text-faint); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.btn) { font-size: 13px; letter-spacing: 1.5px; font-weight: 600; color: var(--text-muted); }
.nav-links a:not(.btn):hover { color: var(--gold); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-img {
  display: block;
  width: 62%; height: 720px; margin-left: 38%;
  object-fit: cover; object-position: right center;
  opacity: 0.5;
}
.hero-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, var(--navy-900) 0%, var(--navy-900) 40%, rgba(10,20,32,0.2) 70%, rgba(10,20,32,0.85) 100%),
    linear-gradient(0deg, var(--navy-900) 0%, rgba(10,20,32,0) 40%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 52px;
  max-width: 1400px; margin: 0 auto;
}
.eyebrow { font-size: 13px; letter-spacing: 4px; font-weight: 700; color: var(--gold); }
.hero h1 {
  margin: 24px 0 0;
  font-family: var(--serif); font-weight: 500; line-height: 0.95;
  font-size: clamp(56px, 8.5vw, 108px); color: var(--ivory);
}
.hero h1 span { color: var(--gold); }
.hero-role { display: flex; align-items: center; gap: 16px; margin-top: 26px; }
.rule { width: 44px; height: 1px; background: var(--gold); flex: none; }
.hero-role-text { font-size: 17px; letter-spacing: 6px; font-weight: 600; color: var(--ivory); }
.hero-sub {
  margin: 20px 0 0;
  font-size: 15px; letter-spacing: 2.5px; font-weight: 600; line-height: 1.9;
  color: var(--gold); max-width: 560px;
}
.hero-cta { display: flex; align-items: center; gap: 20px; margin-top: 34px; flex-wrap: wrap; }
.hero-note { font-size: 13px; letter-spacing: 1.5px; font-weight: 600; color: var(--text-muted); }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.stat { padding: 30px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--hairline-soft); }
.stat-value { font-family: var(--serif); font-size: 40px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 12px; letter-spacing: 2.5px; font-weight: 600; color: var(--text-muted); margin-top: 8px; }

/* ---------- philosophy ---------- */
.philosophy { background: var(--ivory); }
.philosophy-grid {
  max-width: 1400px; margin: 0 auto; padding: 96px 52px;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 80px; align-items: center;
}
.quote-mark { font-family: var(--serif); font-size: 72px; color: #b08d45; line-height: 0.5; height: 34px; }
.philosophy-quote {
  margin: 0; font-family: var(--serif);
  font-size: 30px; font-weight: 400; line-height: 1.55; color: var(--ink);
  text-wrap: pretty;
}
.philosophy-sig { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.philosophy-sig .rule { background: #b08d45; }
.philosophy-sig-text { font-size: 13px; letter-spacing: 3px; font-weight: 700; color: var(--gold-ink); }
.credentials-title { font-size: 14px; letter-spacing: 3px; font-weight: 700; color: var(--ink); line-height: 1.9; }
.credentials-title span { color: var(--gold-ink); }
.credentials-list { margin-top: 22px; border-top: 2px solid var(--ink); }
.credential {
  display: flex; align-items: baseline; gap: 16px;
  padding: 15px 2px;
  border-bottom: 1px solid rgba(23, 37, 58, 0.15);
}
.credential-check { flex: none; color: var(--gold-ink); font-size: 13px; font-weight: 700; }
.credential-text { font-size: 13px; letter-spacing: 1.5px; font-weight: 600; color: #3c4c60; }

/* ---------- pillars ---------- */
.pillars {
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
.pillars-inner { max-width: 1400px; margin: 0 auto; padding: 84px 52px; }
.kicker { font-size: 13px; letter-spacing: 4px; font-weight: 700; color: var(--gold); }
.pillars h2 { margin: 16px 0 0; font-family: var(--serif); font-size: 42px; font-weight: 500; color: #f2efe8; }
.pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-left: 1px solid var(--hairline-soft);
}
.pillar {
  border-right: 1px solid var(--hairline-soft);
  padding: 8px 28px 4px;
  transition: background 0.2s ease;
}
.pillar:hover { background: rgba(201, 164, 92, 0.06); }
.pillar-title { font-size: 15px; font-weight: 700; letter-spacing: 1.5px; color: #f2efe8; margin-top: 20px; line-height: 1.5; }
.pillar-desc { font-size: 14.5px; font-weight: 300; color: var(--text-muted); line-height: 1.65; margin-top: 12px; }

/* ---------- testimonial ---------- */
.testimonial {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  border-top: 1px solid var(--hairline-soft);
  padding: 72px 52px; text-align: center;
}
.testimonial .quote-mark { font-size: 66px; color: var(--gold); line-height: 0.4; height: 30px; }
.testimonial blockquote {
  margin: 0 auto; max-width: 720px; min-height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; font-style: italic;
  line-height: 1.55; color: #eef0f2;
}
.testimonial cite {
  display: block; margin-top: 10px; font-style: normal;
  font-size: 12.5px; letter-spacing: 2px; font-weight: 600; color: var(--text-muted);
}
.testimonial cite span { color: var(--gold); }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testimonial-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: rgba(201, 164, 92, 0.3);
  transition: background 0.3s ease;
}
.testimonial-dots button.active { background: var(--gold); }

/* ---------- services ---------- */
.services { background: var(--ivory); padding: 92px 0 0; text-align: center; }
.services-head { padding: 0 52px; }
.services h2 { margin: 0 auto; max-width: 900px; font-family: var(--serif); font-size: 42px; font-weight: 500; color: var(--ink); }
.services h2 span { font-style: italic; color: var(--gold-ink); }
.services-kicker { margin-top: 18px; font-size: 13px; letter-spacing: 4px; font-weight: 600; color: #5b6a7c; }
.services-band {
  margin-top: 64px; background: var(--navy-800);
  border-top: 1px solid rgba(201, 164, 92, 0.45);
  border-bottom: 1px solid var(--hairline-soft);
}
.services-row {
  max-width: 1400px; margin: 0 auto; padding: 40px 52px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.service { display: flex; align-items: center; gap: 20px; text-align: left; padding: 6px 32px; }
.service:first-child { padding-left: 0; }
.service:last-child { padding-right: 0; }
.service + .service { border-left: 1px solid var(--hairline-soft); }
.service-icon {
  flex: none; width: 58px; height: 58px;
  border: 1.5px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-title { font-size: 13.5px; letter-spacing: 1.5px; font-weight: 700; color: var(--ivory); }
.service-desc { font-size: 13.5px; font-weight: 400; color: var(--text-muted); margin-top: 4px; }

/* ---------- CTA / footer ---------- */
.cta {
  padding: 80px 52px 56px; text-align: center;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.cta-kicker { font-size: 14px; letter-spacing: 4px; font-weight: 600; color: var(--text-soft); }
.cta-line { font-family: var(--serif); font-size: 44px; font-style: italic; color: var(--gold); margin-top: 12px; }
.cta-form {
  display: inline-flex; gap: 12px; margin-top: 40px;
  background: rgba(16, 31, 51, 0.8);
  border: 1px solid rgba(201, 164, 92, 0.5);
  padding: 12px;
}
.cta-form input {
  width: 280px; padding: 13px 16px;
  background: rgba(246, 243, 237, 0.06);
  border: 1px solid rgba(185, 194, 204, 0.2);
  font-size: 13.5px; color: var(--text); font-family: var(--sans);
}
.cta-form input::placeholder { color: #8a97a5; }
.cta-form input:focus { outline: 1px solid var(--gold); }
.cta-note { margin-top: 14px; font-size: 12.5px; color: var(--text-faint); }
.footer-line {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  font-size: 12px; letter-spacing: 2px; color: var(--text-faint);
}

/* ---------- responsive: tablet ---------- */
@media (max-width: 1024px) {
  .container, .nav, .hero-content, .testimonial, .services-head, .services-row, .cta { padding-left: 32px; padding-right: 32px; }
  .nav-tagline { display: none; }
  .philosophy-grid { padding: 72px 32px; gap: 48px; }
  .pillars-inner { padding: 72px 32px; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--hairline-soft); }
  .pillar { padding: 28px; }
  .hero-img { height: 640px; }
}

/* ---------- responsive: mobile ---------- */
@media (max-width: 760px) {
  .container, .nav, .hero-content, .testimonial, .services-head, .services-row, .cta { padding-left: 22px; padding-right: 22px; }
  .nav { padding-top: 14px; padding-bottom: 14px; }
  .nav-tagline { display: none; }
  .nav-links a:not(.btn) { display: none; }
  .nav-links .btn { padding: 10px 16px; font-size: 12px; }
  .hero-img { width: 100%; margin-left: 0; height: 560px; opacity: 0.3; }
  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(10,20,32,0.7) 0%, rgba(10,20,32,0.35) 100%),
      linear-gradient(0deg, var(--navy-900) 0%, rgba(10,20,32,0) 45%);
  }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-role-text { font-size: 14px; letter-spacing: 4px; }
  .hero-sub { font-size: 13px; letter-spacing: 2px; }
  .eyebrow { font-size: 11px; letter-spacing: 3px; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--hairline-soft); }
  .philosophy-grid { grid-template-columns: 1fr; padding: 56px 22px; gap: 44px; }
  .philosophy-quote { font-size: 24px; }
  .pillars-inner { padding: 56px 22px; }
  .pillars h2, .services h2 { font-size: 32px; }
  .pillar-grid { grid-template-columns: 1fr; border-left: none; }
  .pillar { border-right: none; border-bottom: 1px solid var(--hairline-soft); padding: 24px 4px; }
  .testimonial blockquote { font-size: 21px; min-height: 160px; }
  .services { padding-top: 64px; }
  .services-band { margin-top: 44px; }
  .services-row { grid-template-columns: 1fr; padding-top: 12px; padding-bottom: 12px; }
  .service { padding: 20px 0; }
  .service + .service { border-left: none; border-top: 1px solid var(--hairline-soft); }
  .cta { padding-top: 60px; }
  .cta-line { font-size: 32px; }
  .cta-form { display: flex; flex-direction: column; width: 100%; }
  .cta-form input { width: 100%; }
  .footer-line { line-height: 1.8; }
}
