/* Katalyst Consulting — shared styles
   Palette pulled from the actual logo file:
   Plum  #5A2049   Gold  #B5985A
*/

:root {
  --plum: #5A2049;
  --plum-dark: #3E1633;
  --plum-tint: #F4EEF2;
  --gold: #B5985A;
  --gold-light: #D9C89A;
  --cream: #FBF9F6;
  --ink: #2A2220;
  --ink-soft: #6B5F5C;
  --white: #FFFFFF;
  --line: #E4DAD9;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--plum-dark);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink); }
.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; }

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

/* Starburst signature mark, echoes the logo's gold asterisk */
.burst-mark {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.burst-mark i {
  position: absolute; top: 50%; left: 50%;
  width: 22px; height: 2px;
  background: var(--gold);
  transform-origin: center;
  border-radius: 2px;
}
.burst-mark i:nth-child(1){ transform: translate(-50%,-50%) rotate(0deg); }
.burst-mark i:nth-child(2){ transform: translate(-50%,-50%) rotate(60deg); }
.burst-mark i:nth-child(3){ transform: translate(-50%,-50%) rotate(120deg); }

/* Header / Nav */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,246,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link img { height: 40px; }
nav.primary {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.primary a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
nav.primary a.current { color: var(--plum); }
nav.primary a.current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--gold);
}
nav.primary a:hover { color: var(--plum); }
.nav-cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 14px !important;
}
.nav-cta:hover { background: var(--plum-dark); color: var(--white) !important; }
.menu-toggle { display: none; }

@media (max-width: 860px) {
  nav.primary {
    position: fixed; top: 73px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 32px;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
  }
  nav.primary.open { max-height: 400px; padding: 8px 32px 20px; }
  nav.primary a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  nav.primary a.current::after { display: none; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .menu-toggle {
    display: block; background: none; border: none;
    font-family: var(--sans); font-size: 14px; font-weight: 600;
    color: var(--plum); cursor: pointer; padding: 6px 0;
  }
}

/* Hero */
.hero {
  padding: 96px 0 72px;
  background: linear-gradient(180deg, var(--plum-tint) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12.5px; font-weight: 600; color: var(--plum);
  margin-bottom: 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-grid img {
  border-radius: 4px;
  box-shadow: 0 24px 48px -20px rgba(58,20,45,0.35);
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-image { order: -1; max-width: 320px; margin: 0 auto; }
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  transition: all .15s ease;
}
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { background: var(--plum-dark); }
.btn-secondary { border-color: var(--plum); color: var(--plum); }
.btn-secondary:hover { background: var(--plum); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #9c8148; }

/* Sections */
section { padding: 76px 0; }
section.tint { background: var(--plum-tint); }
section.plum {
  background: var(--plum);
  color: #F2E9EC;
}
section.plum h2, section.plum h3 { color: var(--white); }
section.plum .lede { color: #D9C3CF; }
.section-head { max-width: 700px; margin-bottom: 44px; }
.section-head .kicker {
  display: flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: 0.13em;
  font-size: 12px; font-weight: 700; color: var(--gold);
  margin-bottom: 14px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px;
}
.card h3 { margin-bottom: 10px; }

/* Topic list */
.topic {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.topic:first-of-type { border-top: 1px solid var(--line); }
.topic .burst-mark { margin-top: 6px; }
.topic h3 { margin-bottom: 8px; }
.topic p { color: var(--ink-soft); margin: 0; }

/* Testimonial / quote */
blockquote.quote {
  margin: 0;
  padding: 26px 28px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--plum-dark);
}
blockquote.quote footer {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  font-style: normal;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }

/* Logo strip */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 14px 34px;
  align-items: center;
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

/* Timeline (About) */
.timeline { border-left: 2px solid var(--line); margin-left: 8px; }
.tl-item { position: relative; padding: 0 0 30px 30px; }
.tl-item::before {
  content: '';
  position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}
.tl-item .yr { font-size: 13px; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.tl-item h4 { margin: 4px 0 4px; font-family: var(--sans); font-weight: 700; color: var(--plum-dark); font-size: 1rem; }
.tl-item p { color: var(--ink-soft); margin: 0; }

/* Belief list */
.belief { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.belief:first-child { border-top: 1px solid var(--line); }
.belief p { margin: 0; color: var(--ink-soft); }
.belief strong { color: var(--plum-dark); }

/* Footer */
footer.site {
  background: var(--plum-dark);
  color: #D9C3CF;
  padding: 56px 0 28px;
}
footer.site .foot-grid {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
footer.site img { height: 34px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
footer.site p { color: #D9C3CF; }
footer.site a { color: #D9C3CF; }
footer.site a:hover { color: var(--gold-light); }
footer.site nav { display: flex; gap: 24px; flex-wrap: wrap; }
footer.site .bottom {
  padding-top: 22px; display: flex; justify-content: space-between;
  font-size: 13px; color: #B79FAE; flex-wrap: wrap; gap: 10px;
}

/* Contact page specifics */
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 44px;
  text-align: center;
}
.contact-methods { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.contact-methods a.btn { min-width: 220px; text-align: center; }

/* Utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 13.5px; color: var(--ink-soft); }
