
:root{ --bg:#0b0b0c; --fg:#ffffff; --muted:#c9c9cc; --accent:#e6c36b; }
*{box-sizing:border-box}
html{font-size:18px}
html,body{margin:0;padding:0;background:var(--bg);color:var(--fg);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;line-height:1.7}
h1,h2{font-family:Georgia,'Times New Roman',serif;font-weight:600;line-height:1.2;margin:0 0 .5rem 0}
h1{font-size:2.4rem} h2{font-size:1.7rem}
h3{font-weight:600;margin:1rem 0 .4rem 0}
p{margin:.6rem 0}
a{color:var(--fg);text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25)}
a:hover{border-color:var(--accent)}
.container{max-width:1040px;margin:0 auto;padding:1.4rem}
header{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
nav a{margin-left:1rem;border:0;opacity:.9}
nav a:hover{opacity:1;border-bottom:1px solid var(--accent)}
.hero{padding:3.2rem 0;border-top:1px solid #1a1a1a;border-bottom:1px solid #1a1a1a}

/* Subheadline beneath the main hero title */
.subhead{
  color: var(--accent);
  font-size: 1.2rem;
  margin: 0.2rem 0 0.8rem 0;
  font-family: Georgia,'Times New Roman',serif;
  font-weight: 500;
}

/* Improve spacing within hero paragraphs and blockquotes */
.hero p{
  margin-bottom: 1rem;
  max-width: 820px;
}

.hero blockquote{
  margin: 1.5rem 0;
}

/* Reveal animation for scrollable sections on the Approach page */
.reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible{
  opacity: 1;
  transform: none;
}

/* Layout for the scrollytelling sections on the Approach page */
.approach-content{
  margin: 3rem 0;
}
.scroll-block{
  min-height: 60vh;
  border-top: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
}
.scroll-block:first-child{
  border-top: none;
}
.scroll-block p{
  margin: 0;
  max-width: 820px;
}

/* Visual style for the Method at a Glance section */
.method-list{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 820px;
  margin-top: 1rem;
}

.method-step{
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.method-icon{
  min-width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia,'Times New Roman',serif;
  font-size: 1rem;
}

/* Style for SVG icons inside method circles */
.method-icon img{
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  /* invert color to white so icons contrast against dark background */
  filter: invert(100%);
}

.method-step h4{
  margin: 0;
  font-family: Georgia,'Times New Roman',serif;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

/* Navigation for Approach page */
.approach-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.approach-nav a{
  color: var(--accent);
  border-bottom: 1px solid transparent;
}
.approach-nav a:hover{
  border-bottom-color: var(--accent);
}

/* Lists within the Approach scroll blocks */
.scroll-block ul{
  list-style: disc;
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
  max-width: 820px;
}
.scroll-block ul li{
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.5;
  /* Ensure list items use the muted colour and override inherited colours */
  color: var(--muted) !important;
}

.method-step p{
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Styles for expandable text sections */
.expandable-preview {
  margin-bottom: 0.6rem;
}

.expand-toggle {
  margin-top: 0.6rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--accent);
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
}

.expand-toggle:hover {
  text-decoration: underline;
}
.lead{color:var(--muted);max-width:820px}
blockquote{border-left:3px solid var(--accent);padding-left:.6rem;color:#eaeaea;margin:1rem 0}
.badges{display:flex;gap:.6rem 1rem;flex-wrap:wrap;margin-top:.8rem}
.badge{padding:.35rem .6rem;border:1px solid #2a2a2a;border-radius:999px;color:#dedee0;font-size:.85rem}
.cta{display:inline-block;margin-top:1rem;padding:.7rem 1rem;border-radius:.8rem;background:var(--accent);color:#111;font-weight:700;border:0;text-align:center}
.cta:hover{filter:brightness(1.05)}
/* Secondary call to action inherits button styling but uses transparent background and outline */
.cta.secondary{
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.cta.secondary:hover{
  filter: none;
  background: rgba(230, 195, 107, 0.1);
}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1rem;margin-top:1rem}
.card{border:1px solid #1a1a1a;border-radius:1rem;padding:1rem;background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)); display:block; color:inherit; text-decoration:none; transition:background 0.3s ease, border-color 0.3s ease;}
.card:hover{
  background: rgba(255, 255, 255, 0.05);
  border-color: #2a2a2a;
}
.small{font-size:.95rem;color:var(--muted)}
footer{margin-top:2rem;padding:1rem 0;border-top:1px solid #1a1a1a;color:var(--muted);font-size:.95rem}
