/* ============================================================
   Basanese Strategy Group — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Core palette — deep indigo + warm amber */
  --navy:        #1C2B4A;
  --navy-deep:   #111827;
  --slate:       #2E4785;
  --blue-mid:    #3D6199;
  --accent:      #C47D10;
  --accent-lt:   #E09728;
  --accent-pale: #FFF3DC;
  --terracotta:  #B85C38;

  /* Warm backgrounds — the key to feeling "warm" not "cold" */
  --bg:          #FAFAF8;
  --bg-warm:     #F5F1EA;
  --bg-dark:     #F0EBE1;
  --surface:     #FFFFFF;
  --surface-warm:#FFFCF7;

  /* Text */
  --text:        #1A1F2E;
  --text-muted:  #5C6480;
  --text-light:  #8892A8;

  /* Borders & shadows — slightly warm-tinted */
  --border:      #E4DDD2;
  --border-lt:   #EDE8E0;
  --shadow-sm:   0 2px 10px rgba(28,43,74,.07);
  --shadow-md:   0 8px 32px  rgba(28,43,74,.11);
  --shadow-lg:   0 24px 64px rgba(28,43,74,.16);
  --shadow-warm: 0 8px 32px  rgba(196,125,16,.18);

  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 50px;
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.7; }
a  { color: inherit; text-decoration: none; }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
section    { padding: 96px 0; }

/* ── Section label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* ── Buttons — more Apple-like pill shape ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .9rem 2.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-size: .93rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: .01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-lt) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(196,125,16,.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-lt) 0%, #F0A838 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,125,16,.42);
}
.btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.75);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--slate);
  border-color: var(--slate);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: var(--bg-dark);
  border-color: var(--navy);
}

/* ── Cards ── */
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-lt);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28,43,74,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1160px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.nav-logo .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.nav-logo .tagline-sm {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-lt);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  letter-spacing: .01em;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta { margin-left: 1rem; }
.nav-cta.btn { padding: .65rem 1.4rem; font-size: .85rem; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.55);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3.5rem;
  margin-bottom: 56px;
}
.footer-brand .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand .footer-sub {
  color: rgba(255,255,255,.45);
  font-size: .88rem;
  margin-top: .8rem;
  max-width: 280px;
  line-height: 1.6;
}
.footer-brand .footer-accent-line {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-lt));
  margin: 1rem 0;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .7rem; }
.footer ul a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color var(--transition);
  font-weight: 400;
}
.footer ul a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── Utility ── */
.text-accent { color: var(--accent); }
.text-white  { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
