/* ============================================================
   Branson Consulting — style.css
   Aesthetic: Warm Boutique Consultancy
   Palette: cream + terracotta + deep forest green + warm sand
   Fonts: Bodoni Moda (display) · Lora (body) · Space Mono
   Structure: asymmetric splits, full-bleed bands, NO cards,
   NO dark bg, NO teal, NO grid lines — completely unlike
   counseloredeval.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,700;0,6..96,900;1,6..96,400;1,6..96,700&family=Lora:ital,wght@0,400;0,500;1,400&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --cream:       #F9F4EC;
  --cream-warm:  #F2EAD8;
  --sand:        #E8DECA;
  --sand-dark:   #D4C9B0;
  --terra:       #C05A3A;
  --terra-lt:    #D47355;
  --terra-dark:  #9B3E23;
  --forest:      #2C4A35;
  --forest-mid:  #3D6349;
  --forest-lt:   #4E7A5A;
  --ink:         #1E1A14;
  --ink-mid:     #4A4035;
  --ink-muted:   #8A7E70;
  --rule:        #D8CFBE;

  --ff-display: 'Bodoni Moda', 'Georgia', serif;
  --ff-body:    'Lora', 'Georgia', serif;
  --ff-mono:    'Space Mono', 'Courier New', monospace;

  --page-max: 1100px;
  --pad:      clamp(1.5rem, 6vw, 4rem);
  --gap:      clamp(2rem, 5vw, 4rem);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

.skip {
  position: absolute; top: -999px; left: 1rem;
  background: var(--terra); color: var(--cream);
  padding: .4rem .9rem; font-family: var(--ff-mono);
  font-size: .68rem; z-index: 9999;
}
.skip:focus { top: .5rem; }

/* ============================================================
   NAV — minimal top strip
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--cream);
  border-bottom: 1px solid var(--sand-dark);
  transition: box-shadow .3s;
}
.site-nav.scrolled {
  box-shadow: 0 2px 32px rgba(30,26,20,.08);
}

.nav-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .02em;
}
.nav-brand span {
  display: block;
  font-family: var(--ff-mono);
  font-size: .5rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: clamp(.8rem, 3vw, 2.5rem);
  align-items: center;
}
.nav-links a {
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--terra); }

/* ============================================================
   HERO — full-bleed asymmetric split
   Left: oversized display type bleeds off edge
   Right: terra accent block with descriptor text
   ============================================================ */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: stretch;
  background: var(--cream-warm);
  border-bottom: 2px solid var(--sand-dark);
  overflow: hidden;
}

.hero-left {
  padding: clamp(4rem, 10vw, 8rem) var(--pad) clamp(4rem, 10vw, 8rem) clamp(1.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Giant decorative letter behind heading */
.hero-left::before {
  content: 'B';
  position: absolute;
  top: -0.15em;
  left: -0.05em;
  font-family: var(--ff-display);
  font-size: clamp(18rem, 30vw, 28rem);
  font-weight: 900;
  font-style: italic;
  color: var(--sand);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-overline {
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.hero-overline::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--terra);
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: .95;
  color: var(--forest);
  letter-spacing: -.02em;
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.hero-heading em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

.hero-scroll-hint {
  font-family: var(--ff-mono);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px;
  height: 2.5rem;
  background: var(--sand-dark);
  display: block;
}

/* Hero right — terracotta panel */
.hero-right {
  background: var(--terra);
  padding: clamp(4rem, 8vw, 7rem) 3rem clamp(4rem, 8vw, 7rem) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
}

.hero-desc {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(249,244,236,.9);
  line-height: 1.8;
  border-left: 2px solid rgba(249,244,236,.3);
  padding-left: 1.2rem;
}

.hero-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
}
.hero-name span {
  display: block;
  font-family: var(--ff-mono);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(249,244,236,.55);
  margin-top: .4rem;
}

.hero-domains {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  border-top: 1px solid rgba(249,244,236,.2);
  padding-top: 1.5rem;
}
.hero-domain-item {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(249,244,236,.6);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-domain-item::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(249,244,236,.4);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT BAND — forest green full bleed, text + pull quote
   ============================================================ */
.about-band {
  background: var(--forest);
  color: var(--cream);
}

.about-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.about-label {
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--terra-lt);
  margin-bottom: 1.5rem;
}

.about-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.about-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--terra-lt);
}

.about-body {
  font-size: .98rem;
  color: rgba(249,244,236,.72);
  line-height: 1.88;
}
.about-body p + p { margin-top: 1rem; }

/* Pull quote right column */
.about-quote {
  padding-top: 3.5rem;
}

blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.35;
  border-left: 3px solid var(--terra-lt);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
blockquote footer {
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(249,244,236,.4);
  font-style: normal;
  border: none;
  padding: 0;
  margin-top: .8rem;
  background: transparent;
}

/* ============================================================
   SERVICES — cream bg, horizontal ruled list with big numbers
   ============================================================ */
.services-section {
  background: var(--cream);
  border-top: 2px solid var(--sand-dark);
  border-bottom: 2px solid var(--sand-dark);
}

.services-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
  border-bottom: 1px solid var(--rule);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.services-label {
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.services-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest);
}
.services-heading em {
  font-style: italic;
  font-weight: 400;
}

.services-intro {
  align-self: end;
  font-size: .96rem;
  color: var(--ink-mid);
  line-height: 1.82;
  font-style: italic;
}

/* Service rows — NOT cards. Big Roman numerals, ruled list */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 2rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background .18s;
}
.service-row:hover {
  background: var(--cream-warm);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.service-num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--sand-dark);
  line-height: 1;
  padding-top: .2rem;
  transition: color .2s;
}
.service-row:hover .service-num { color: var(--terra-lt); }

.service-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  padding-top: .35rem;
}
.service-tag {
  font-family: var(--ff-mono);
  font-size: .55rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: .4rem;
}

.service-desc {
  font-size: .93rem;
  color: var(--ink-mid);
  line-height: 1.82;
  padding-top: .35rem;
}

/* ============================================================
   CREDENTIALS — sand background, two-column list
   ============================================================ */
.creds-section {
  background: var(--sand);
  border-bottom: 2px solid var(--sand-dark);
}

.creds-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--gap);
  align-items: start;
}

.creds-heading-block {}
.creds-label {
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}
.creds-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--forest);
}
.creds-heading em {
  font-style: italic;
  font-weight: 400;
}
.creds-sub {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--ink-mid);
  font-style: italic;
  line-height: 1.75;
}

.cred-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--sand-dark);
  align-items: baseline;
}
.cred-entry:first-child { border-top: 1px solid var(--sand-dark); }

.cred-title {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.35;
}
.cred-num {
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .06em;
  color: var(--ink-muted);
  white-space: nowrap;
  text-align: right;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--forest);
  color: var(--cream);
  padding: 1.6rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: auto;
}
.foot-brand {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--cream);
}
.foot-copy {
  font-family: var(--ff-mono);
  font-size: .55rem;
  letter-spacing: .08em;
  color: rgba(249,244,236,.35);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left::before { font-size: 14rem; }
  .hero-right {
    padding: 3rem var(--pad);
    justify-content: flex-start;
  }
  .about-inner      { grid-template-columns: 1fr; }
  .services-header  { grid-template-columns: 1fr; }
  .service-row      { grid-template-columns: 60px 1fr; }
  .service-desc     { grid-column: 2; }
  .creds-inner      { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav-links a:not(:last-child) { display: none; }
  .hero-left::before { display: none; }
  .service-row { grid-template-columns: 1fr; gap: .5rem; }
  .service-num { font-size: 2rem; }
}
