/* ============ Newfound Insight brand system ============ */
:root {
  --navy: #0d1d2a;
  --navy-soft: #13273a;
  --cream: #fdf7ec;
  --cream-deep: #f5ecdb;
  --gold: #b8863b;
  --gold-light: #d9b877;
  --ink: #24313d;
  --ink-soft: #52616e;
  --serif: 'Cinzel', 'Trajan Pro', serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem clamp(1.25rem, 5vw, 4rem);
  background: rgba(13, 29, 42, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 184, 119, 0.25);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.nav-brand span { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 3px;
}

/* ============ Hero ============ */
.hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem clamp(4rem, 8vw, 6.5rem);
}

.hero-logo {
  display: block;
  margin: 0 auto 1.5rem;
  width: min(340px, 70vw);
}

.hero-kicker {
  font-family: var(--serif);
  color: var(--gold-light);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.25;
  max-width: 22ch;
  margin: 0 auto 1.5rem;
}

.hero-sub {
  max-width: 62ch;
  margin: 0 auto 2.25rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 0.85rem 2.1rem;
  border-radius: 3px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(184, 134, 59, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 134, 59, 0.45);
}

/* ============ Value-prop strip ============ */
.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}

.strip-item h3 {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold-light);
  display: inline-block;
}

.strip-item p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============ Sections ============ */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1150px;
  margin: 0 auto;
}

.section-kicker {
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-navy {
  background: var(--navy);
  max-width: none;
}

.section-navy .section-kicker { color: var(--gold-light); }
.section-navy h2 { color: #fff; }

/* ============ Service cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.9rem 1.6rem;
  box-shadow: 0 2px 14px rgba(13, 29, 42, 0.06);
}

.card h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============ Expertise pills ============ */
.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 850px;
  margin: 0 auto 2.25rem;
}

.pill {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 0.8rem 1.5rem;
  background: rgba(217, 184, 119, 0.08);
}

.section-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  max-width: 58ch;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ============ Process phases ============ */
.phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.phase {
  background: #fff;
  border: 1px solid var(--cream-deep);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 14px rgba(13, 29, 42, 0.06);
}

.phase-num {
  font-family: var(--serif);
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.phase h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.phase p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 0.9rem; }
.phase p:last-child { margin-bottom: 0; }

.phase-detail {
  border-left: 3px solid var(--gold-light);
  padding-left: 0.9rem;
  font-size: 0.92rem;
}

.incentive {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 6px;
  padding: 2.25rem clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.incentive h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

.incentive p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 68ch;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* ============ Contact ============ */
#contact { text-align: center; }

.contact-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin: -0.75rem auto 2rem;
  font-size: 1.02rem;
}

/* ============ Footer ============ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(217, 184, 119, 0.25);
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.footer img { display: block; margin: 0 auto 0.75rem; opacity: 0.9; }

.footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ============ Mobile ============ */
@media (max-width: 640px) {
  .nav { position: static; flex-direction: column; gap: 0.6rem; padding: 0.8rem 1rem; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
}
