/* ============================================================
   Jeff Althouse — personal site
   Token system:
   paper #FAF7F0 | ink #202B23 | ink-soft #4A564C
   academic (systemic) #3E4F68 | coaching (personal) #C17F3E
   line #DAD3C1 | moss #7C8F76
   Display: Fraunces (serif, variable) | Body: Work Sans
   Signature: the "bridge line" — a hairline that runs straight
   and dashed on the academic side, then relaxes into a soft
   hand-drawn curve on the coaching side. Used as section marker
   and hero motif throughout.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,400;1,9..144,500&family=Work+Sans:wght@300;400;500;600&display=swap');

:root{
  --paper:#FAF7F0;
  --paper-dim:#F3EFE4;
  --ink:#202B23;
  --ink-soft:#4A564C;
  --academic:#3E4F68;
  --coaching:#C17F3E;
  --line:#DAD3C1;
  --moss:#7C8F76;
  --max:920px;
}

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

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Work Sans', -apple-system, sans-serif;
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;}
a:focus-visible, button:focus-visible{outline:2px solid var(--academic); outline-offset:3px;}

img{max-width:100%; display:block;}

h1,h2,h3{
  font-family:'Fraunces', Georgia, serif;
  font-weight:600;
  margin:0 0 .4em;
  letter-spacing:-.01em;
  color:var(--ink);
}

.eyebrow{
  font-family:'Work Sans', sans-serif;
  font-size:.72rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--ink-soft);
  font-weight:600;
}

/* ---------- layout shell ---------- */
.wrap{max-width:var(--max); margin:0 auto; padding:0 28px;}

header.site-head{
  position:sticky; top:0; z-index:20;
  background:rgba(250,247,240,.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line);
}
.site-head .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; padding-bottom:18px;
}
.wordmark{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:1.05rem;
  letter-spacing:.02em;
  text-decoration:none;
}
nav.primary ul{
  list-style:none; display:flex; gap:28px; margin:0; padding:0;
}
nav.primary a{
  text-decoration:none;
  font-size:.86rem;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding-bottom:3px;
}
nav.primary a:hover, nav.primary a[aria-current="page"]{color:var(--ink);}
nav.primary a[aria-current="page"]::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-3px; height:2px;
  background:var(--coaching);
}
.nav-toggle{display:none;}

@media (max-width:640px){
  nav.primary ul{gap:16px; flex-wrap:wrap; justify-content:flex-end;}
  nav.primary a{font-size:.8rem;}
}

/* ---------- bridge line signature ---------- */
.bridge-line{width:100%; height:34px; display:block; margin:6px 0;}

/* ---------- hero ---------- */
.hero {
  padding: 64px 0 20px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: center;
}

.hero-photo {
  width: 300px;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: .5rem;
}

.hero p {
  color: var(--ink-soft);
  max-width: 60ch;
}

.hero-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  padding: 10px 18px;
  border-radius: 3px;
}

.hero-cta:hover {
  background: var(--academic);
}

@media (max-width: 640px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    width: 100%;
    max-width: 320px;
    height: 400px;
  }
}

/* ---------- section cards (home landing) ---------- */
.split{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  margin-top:36px; border-top:1px solid var(--line);
}
.panel{
  padding:44px 36px;
  border-bottom:1px solid var(--line);
}
.panel:first-child{border-right:1px solid var(--line); border-left:1px solid var(--line);}
.panel:last-child{border-right:1px solid var(--line);}
.panel .eyebrow{color:var(--academic);}
.panel.coaching .eyebrow{color:var(--coaching);}
.panel h2{font-size:1.4rem;}
.panel p{color:var(--ink-soft); font-size:.96rem;}
.panel a.more{
  display:inline-block; margin-top:10px;
  font-size:.85rem; font-weight:600; text-decoration:none;
  border-bottom:1.5px solid var(--academic);
  padding-bottom:2px;
}
.panel.coaching a.more{border-bottom-color:var(--coaching);}

@media (max-width:700px){
  .split{grid-template-columns:1fr;}
  .panel:first-child{border-right:1px solid var(--line);}
}

/* ---------- generic page sections ---------- */
main{padding-bottom:80px;}
.page-head{padding:52px 0 8px;}
.page-head .eyebrow{margin-bottom:8px; display:block;}
.page-head h1{font-size:2rem;}

section.block{padding:28px 0;}
section.block h3{
  font-size:1.05rem;
  margin-bottom:14px;
  padding-bottom:8px;
  border-bottom:1px solid var(--line);
}

/* research listing */
.pub-list{list-style:none; margin:0 0 30px; padding:0;}
.pub-list li{
  padding:12px 0;
  border-bottom:1px dotted var(--line);
  font-size:.94rem;
  line-height:1.55;
}
.pub-list li:last-child{border-bottom:none;}
.pub-list em{font-style:italic;}
.pub-list a{
  color:var(--academic);
  font-weight:600; text-decoration:none;
  border-bottom:1px solid transparent;
}
.pub-list a:hover{border-bottom-color:var(--academic);}

/* coaching page */
.coach-lede{font-size:1.05rem; color:var(--ink-soft); max-width:66ch;}
.faq dt{font-weight:600; margin-top:16px;}
.faq dd{margin:4px 0 0; color:var(--ink-soft);}

.fees{list-style:none; margin:0; padding:0;}
.fees li{
  display:flex; justify-content:space-between; gap:20px;
  padding:12px 0; border-bottom:1px dotted var(--line);
  font-size:.94rem;
}
.fees li:last-child{border-bottom:none;}
.fees .amt{color:var(--coaching); font-weight:600; white-space:nowrap;}
.fine{font-size:.8rem; color:var(--ink-soft); margin-top:14px;}

.cta-band{
  margin-top:34px; padding:26px 30px; border-radius:6px;
  background:var(--paper-dim); border:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  flex-wrap:wrap;
}
.cta-band a{
  text-decoration:none; font-weight:600; font-size:.88rem;
  background:var(--coaching); color:var(--paper);
  padding:10px 18px; border-radius:3px;
}
.cta-band a:hover{background:#a8672a;}

/* CV page */
.cv-links{display:flex; gap:16px; flex-wrap:wrap; margin:18px 0 30px;}
.cv-links a{
  text-decoration:none; font-weight:600; font-size:.9rem;
  color:var(--ink); border:1px solid var(--ink);
  padding:10px 18px; border-radius:3px;
}
.cv-links a:hover{background:var(--ink); color:var(--paper);}

/* contact */
.contact-block{margin-top:10px;}
.contact-block p{margin:4px 0;}
.contact-block a{color:var(--academic); text-decoration:none; font-weight:600;}

/* ---------- footer ---------- */
footer{
  border-top:1px solid var(--line);
  padding:40px 0 60px;
  background:var(--paper-dim);
}
.foot-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:30px;
}
.foot-grid h4{
  font-family:'Fraunces', serif; font-size:.95rem; font-weight:600; margin:0 0 10px;
}
.foot-grid ul{list-style:none; margin:0; padding:0;}
.foot-grid li{margin-bottom:6px;}
.foot-grid a{text-decoration:none; color:var(--ink-soft); font-size:.88rem;}
.foot-grid a:hover{color:var(--ink);}
.foot-email{
  display:block; margin-top:16px; font-style:italic;
  color:var(--ink-soft); font-size:.85rem;
}
@media (max-width:640px){
  .foot-grid{grid-template-columns:1fr; gap:22px;}
}

/* ---------- coaching image and text rows ---------- */

.coaching-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.coaching-copy h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.coaching-copy p {
  color: var(--ink-soft);
}

.coaching-copy a {
  color: var(--academic);
  font-weight: 600;
  text-decoration: none;
}

.coaching-copy a:hover {
  text-decoration: underline;
}

.coaching-image {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.coaching-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journey-image img {
  object-position: center 30%;
}

.approach-image img {
  object-position: center;
}

/* ---------- testimonial ---------- */

.testimonial {
  max-width: 740px;
  margin: 72px auto;
  padding: 38px 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial blockquote {
  margin: 0;
}

.testimonial p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--ink);
}

.testimonial-name {
  display: block;
  margin-top: 18px;
  text-align: right;
  font-family: 'Work Sans', sans-serif;
  font-size: .95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---------- mobile coaching layout ---------- */

@media (max-width: 700px) {
  .coaching-row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .coaching-image {
    height: 380px;
  }

  .testimonial {
    margin: 52px auto;
    padding: 30px 12px;
  }

  .testimonial p {
    font-size: 1.1rem;
  }
}
/* Keep both coaching images the same size */
.journey-image,
.approach-image {
  width: 100%;
  height: 480px;
  align-self: center;
  overflow: hidden;
}

/* Make both photos fill their frames */
.journey-image img,
.approach-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center the visible part of the reflection photo */
.approach-image img {
  object-position: center center;
}

/* Vertically center each image beside its text */
.coaching-row {
  align-items: center;
}
/* ---------- testimonial and consultation ---------- */

.testimonial-cta-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr);
  gap: 48px;
  align-items: center;
  margin: 72px 0;
  padding: 42px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.testimonial-cta-row .testimonial {
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.testimonial-cta-row .testimonial p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--ink);
}

.testimonial-name {
  display: block;
  margin-top: 18px;
  text-align: right;
  font-family: 'Work Sans', sans-serif;
  font-size: .95rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-soft);
}

.testimonial-cta {
  display: flex;
  justify-content: flex-end;
}

.testimonial-cta a {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 3px;
  background: var(--coaching);
  color: var(--paper);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.testimonial-cta a:hover {
  background: #a8672a;
}

.testimonial-cta-row .cta-band a {
  min-width: 220px;
  text-align: center;
}

/* ---------- expandable sections ---------- */

.dropdown-section {
  border-bottom: 1px solid var(--line);
}

.dropdown-section:first-of-type {
  border-top: 1px solid var(--line);
}

.dropdown-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.dropdown-section summary::-webkit-details-marker {
  display: none;
}

.dropdown-section summary::after {
  content: "+";
  margin-left: 20px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--coaching);
}

.dropdown-section[open] summary::after {
  content: "−";
}

.dropdown-content {
  padding: 0 0 28px;
  color: var(--ink-soft);
}

.dropdown-content p:first-child {
  margin-top: 0;
}

.dropdown-content a {
  color: var(--academic);
  font-weight: 600;
  text-decoration: none;
}

.dropdown-content a:hover {
  text-decoration: underline;
}


/* ---------- mobile ---------- */

@media (max-width: 700px) {
  .testimonial-cta-row {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 52px 0;
    padding: 34px 0;
  }

  .testimonial-cta {
    justify-content: flex-start;
  }

  .testimonial-cta a {
    width: 100%;
  }

  .testimonial-cta-row .testimonial p {
    font-size: 1.1rem;
  }
}
/* ---------- FAQ and Fees two-column section ---------- */

.faq-fees-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 52px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.faq-column h2,
.fees-column h2 {
  font-size: 1.7rem;
  margin-bottom: 22px;
}

/* ---------- FAQ dropdowns ---------- */

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--coaching);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--ink-soft);
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer a {
  color: var(--academic);
  font-weight: 600;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* ---------- Fees column ---------- */

.fees-column {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.fees-column .fees {
  margin-top: 0;
}

/* ---------- Mobile ---------- */

@media (max-width: 700px) {
  .faq-fees-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 42px 0;
  }

  .fees-column {
    padding-top: 38px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}
