:root {
  --navy:         #1a4a7a;
  --navy-dark:    #0f2e4e;
  --navy-light:   #2a6aaa;
  --copper:       #c07a38;
  --copper-light: #e0a060;
  --copper-pale:  #f5e6d3;
  --white:        #ffffff;
  --off-white:    #f8f6f3;
  --text-dark:    #1a2a3a;
  --text-mid:     #4a5a6a;
  --text-light:   #8a9aaa;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(26, 74, 122, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img { height: 38px; width: 38px; object-fit: contain; }

.nav-logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--copper); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--navy); }

.nav-cta {
  background: var(--copper) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--copper-light) !important; }

/* ── HERO ── */
#intro {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 3rem 5rem;
  background: linear-gradient(150deg, var(--off-white) 0%, #eaf1f8 50%, var(--copper-pale) 100%);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

.hero-title em { font-style: normal; color: var(--copper); }

.hero-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.hero-body strong { color: var(--navy-dark); font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.8rem; }

.hero-logo-wrap { display: flex; justify-content: center; }

.hero-logo-wrap img {
  width: min(380px, 100%);
  filter: drop-shadow(0 20px 40px rgba(26, 74, 122, 0.18));
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: 7px;
  transition: all 0.2s;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

.btn-book {
  background: linear-gradient(135deg, var(--copper), var(--copper-light));
  color: var(--white);
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(192, 122, 56, 0.3);
}

.btn-book:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192, 122, 56, 0.4); }

/* ── VALUE STRIP (Technical Ceiling) ── */
.value-strip {
  background: var(--navy-dark);
  padding: 4rem 3rem;
}

.value-strip-header {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.value-strip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 0.6rem;
}

.value-strip-title {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  max-width: 620px;
}

.value-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.value-item { border-top: 2px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
.value-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.value-item h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.55); line-height: 1.65; }

/* ── SECTION SHARED ── */
section { padding: 6rem 3rem; }
section.section--alt { background: var(--off-white); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.8rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 600px;
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--copper));
  border-radius: 2px;
  margin: 1.5rem 0;
}

/* ── SERVICES / WHO WE SERVE ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.service-card {
  border: 1px solid rgba(26, 74, 122, 0.12);
  border-radius: 14px;
  padding: 2.2rem;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 10px 36px rgba(26, 74, 122, 0.1);
  transform: translateY(-3px);
}

.service-card--accent {
  background: var(--navy-dark);
  border-color: transparent;
}

.service-card--accent .service-title,
.service-card--accent .service-desc { color: var(--white); }

.service-card--accent .service-type { color: var(--copper-light); }

.service-card--accent .service-solutions li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.12);
}

.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.2rem;
}

.service-type {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1.4rem;
}

.service-solutions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-solutions li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  border-top: 1px solid rgba(26, 74, 122, 0.08);
}

.service-solutions li::before {
  content: "→ ";
  color: var(--copper);
  font-weight: 700;
}

.solutions-list-wrap {
  margin-top: 3.5rem;
  padding: 2.2rem 2.5rem;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid rgba(26, 74, 122, 0.08);
}

.solutions-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.solutions-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 2rem;
}

.solutions-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1rem;
  position: relative;
}

.solutions-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--copper);
  font-weight: 700;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 3.5rem;
}

.process-connector {
  font-size: 1.5rem;
  color: var(--copper);
  padding: 3.5rem 1.5rem 0;
  opacity: 0.5;
}

.process-step {
  padding: 2.2rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(26, 74, 122, 0.1);
}

.process-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--copper);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.8rem;
}

.process-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.process-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.process-details li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.process-details li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--copper);
}

/* ── RECENT WORK ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.work-card {
  border: 1px solid rgba(26, 74, 122, 0.1);
  border-radius: 14px;
  padding: 2.2rem;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s;
}

.work-card:hover {
  box-shadow: 0 10px 36px rgba(26, 74, 122, 0.1);
  transform: translateY(-3px);
}

.work-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}

.work-tag--industry { background: rgba(26, 74, 122, 0.1); color: var(--navy); }
.work-tag--legal    { background: rgba(192, 122, 56, 0.12); color: var(--copper); }
.work-tag--performance { background: rgba(26, 74, 122, 0.08); color: var(--navy-light); }

.work-partner {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
}

.work-project {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 1rem;
}

.work-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ── BOOK ── */
.book-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26, 74, 122, 0.1);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(26, 74, 122, 0.08);
}

.book-card-body p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.5rem; }

.book-perks { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }

.book-perks li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--text-mid); }

.perk-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--copper); flex-shrink: 0; }

.book-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; min-width: 200px; }

.book-note { font-size: 0.78rem; color: var(--text-light); text-align: center; }

/* ── TEAM ── */
#team { background: var(--white); }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-top: 3rem; }

.team-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26, 74, 122, 0.1);
  transition: box-shadow 0.25s, transform 0.25s;
}

.team-card:hover { box-shadow: 0 12px 40px rgba(26, 74, 122, 0.12); transform: translateY(-3px); }

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d0dcea 0%, #c8daf0 50%, #e8d8c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }

.team-photo-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo-avatar svg { width: 48px; height: 48px; opacity: 0.5; }

.team-photo-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 74, 122, 0.45);
}

.team-info { padding: 1.8rem 2rem; background: var(--white); }

.team-name { font-size: 1.2rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 0.5rem; }

.team-roles { display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }

.team-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--copper);
}

.team-role-divider { color: var(--text-light); font-size: 0.9rem; }

.team-role-alt {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  font-style: italic;
}

.team-bio { font-size: 0.92rem; line-height: 1.7; color: var(--text-mid); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 2.5rem 3rem; text-align: center; }

.footer-logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.footer-logo img { height: 28px; filter: brightness(0) invert(1) opacity(0.8); }
.footer-logo-text { font-size: 1rem; font-weight: 700; color: rgba(255, 255, 255, 0.8); }
footer p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr; max-width: 520px; }
  .work-grid { grid-template-columns: 1fr; max-width: 520px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .solutions-list { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  nav { padding: 0 1.5rem; }

  .hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-wrap img { width: 220px; }

  .value-grid { grid-template-columns: 1fr; gap: 2rem; }

  section { padding: 4rem 1.5rem; }
  .value-strip { padding: 3rem 1.5rem; }

  .book-card { grid-template-columns: 1fr; padding: 2.5rem; }
  .book-cta-wrap { flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
}
