/* ============================================================
   Just B — justb.lu
   Static site stylesheet.
   Visual direction: Build Brief (revised, June 2026).
   Display: Cormorant Garamond · Functional: Inter · base 17px.
   Never bold. Sentence case. Horizontal rule as only ornament.
   Colours locked — do not add new colours.

   Revision 2026-06-10 — compaction + layout pass:
   - Tighter vertical rhythm (section padding, hero, pull quotes, line-height).
   - Wider text measure; images brought in a little (text:image 1.25:1).
   - Heading rule hardened so all page titles render in Cormorant.
   - About photo no longer sticky (now pairs with the quote beneath it).
   Type sizes unchanged — nothing shrunk, only spacing tightened.
   ============================================================ */

:root {
  --bg:       #F8F5F0; /* near-white, barely warm */
  --charcoal: #2A2320; /* display text */
  --mid:      #7A7068; /* secondary text */
  --stone:    #B5ADA4; /* quiet labels */
  --border:   #E0D8D2; /* rules / placeholders */
  --gold:     #B8922A; /* accent — thin rules, eyebrows, details only. Never a fill. */

  --display:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --functional: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --maxw: 1080px;
  --pad:  48px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--charcoal);
  font-family: var(--functional);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Never bold — clamp any stray strong/b to normal weight per brand rule. */
strong, b { font-weight: 400; }

a { color: inherit; }

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

/* ── Rules (the only ornament) ── */
.rule       { border: none; border-top: 0.5px solid var(--gold);   width: 100%; }
.rule-light { border: none; border-top: 0.5px solid var(--border); width: 100%; }

/* ── Eyebrow / labels ── */
.eyebrow {
  font-family: var(--functional);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.66rem;
  color: var(--gold);
  font-weight: 300;
}

/* ── Navigation ── */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--bg);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--pad);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.wordmark small {
  display: block;
  font-family: var(--functional);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.57rem;
  color: var(--gold);
  margin-top: 5px;
  font-weight: 300;
}
nav.menu { display: flex; gap: 32px; flex-wrap: wrap; }
nav.menu a {
  font-family: var(--functional);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.66rem;
  color: var(--mid);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 0.5px solid transparent;
  transition: color .2s, border-color .2s;
  font-weight: 300;
}
nav.menu a:hover { color: var(--charcoal); }
nav.menu a.active { color: var(--charcoal); border-bottom-color: var(--gold); }

/* ── Scaffold ── */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
section.block { padding: 48px 0; }
section.block + section.block { border-top: 0.5px solid var(--border); }

/* ── Image placeholders (SVG fills these until real photos arrive) ── */
.media { width: 100%; height: auto; }
.media.portrait { aspect-ratio: 3 / 4; object-fit: cover; }
.media.tall     { aspect-ratio: 2 / 3; object-fit: cover; }

/* ── Home hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0 56px;
}
.hero-text .eyebrow { margin-bottom: 28px; display: block; }
.hero-text h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-text .tagline {
  font-family: var(--display);
  font-style: italic;
  color: var(--mid);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin-top: 24px;
  font-weight: 400;
}

/* ── Pull quote ── */
.pullquote { text-align: center; padding: 40px 0; max-width: 660px; margin: 0 auto; }
.pullquote .q {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.5;
  color: var(--charcoal);
  padding: 32px 0;
}
.pullquote .attr {
  font-family: var(--functional);
  font-size: 0.75rem;
  color: var(--mid);
  margin-top: 18px;
  letter-spacing: 0.06em;
  font-weight: 300;
}

/* ── Section head ── */
.sh { margin-bottom: 36px; }
.sh .eyebrow { display: block; margin-bottom: 14px; }
.sh h1,
.sh h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}
/* Heading font — hardened so every page title renders in Cormorant,
   whether .sh is the parent (Coaching/Voice/Contact) or sits on the
   heading itself (About). Weight pinned to 400 per the never-bold rule. */
.sh h1, .sh h2,
h1.sh, h2.sh,
.page-head h1, .page-head h2 {
  font-family: var(--display);
  font-weight: 400;
}
.page-head { padding-top: 64px; }
.page-head h1,
.page-head h2 { margin-bottom: 0; }

/* ── Body text ── */
p.lede {
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 68ch;
  font-weight: 400;
  color: var(--charcoal);
}
p.lede + p.lede { margin-top: 22px; }
.muted { color: var(--mid); }
.serif-italic { font-family: var(--display); font-style: italic; font-size: 1.15rem; }

/* ── About layout ── */
.about-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
/* Photo now pairs with the Amy Poehler quote beneath it, so it scrolls
   with that block rather than sticking. */
.about-photo { position: static; }

/* ── Two-column intro (Coaching / Voice) ── */
.intro-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px; align-items: start; }
.intro-grid .media { position: sticky; top: 100px; }

/* ── Testimonial ── */
.testi { padding: 36px 0; border-top: 0.5px solid var(--border); }
.testi:first-child { border-top: none; padding-top: 0; }
.testi .q {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.65;
  max-width: 78ch;
  font-weight: 400;
}
.testi .attr {
  font-family: var(--functional);
  font-size: 0.73rem;
  color: var(--mid);
  margin-top: 16px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ── Credentials ── */
.creds {
  font-family: var(--functional);
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 2.1;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ── Products ── */
.product {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-top: 0.5px solid var(--border);
}
.product:last-child { border-bottom: 0.5px solid var(--border); }
.product .pt { font-family: var(--display); font-size: 1.5rem; font-weight: 400; }
.product .ps { font-family: var(--display); font-style: italic; color: var(--mid); margin-top: 4px; font-size: 1.05rem; }
.product .langs {
  font-family: var(--functional);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.61rem;
  color: var(--stone);
  margin-top: 10px;
  font-weight: 300;
}
.product .price { font-family: var(--display); font-size: 1.25rem; text-align: right; }
.product .price.free { font-style: italic; color: var(--mid); }
.product .cs {
  font-family: var(--functional);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 8px;
  font-weight: 300;
  text-align: right;
}
/* Lemon Squeezy buy button — styled, dormant until checkout links go live. */
.product .buy { margin-top: 10px; text-align: right; }

/* ── Email capture (MailerLite slot) ── */
.ec-label {
  font-family: var(--functional);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 300;
}
.ec { display: flex; gap: 0; margin-top: 10px; max-width: 420px; }
.ec input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--stone);
  padding: 10px 4px;
  font-family: var(--functional);
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 300;
}
.ec input:focus { outline: none; border-bottom-color: var(--gold); }

/* ── Buttons / links ── */
.btn {
  font-family: var(--functional);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.63rem;
  color: var(--charcoal);
  border: 0.5px solid var(--stone);
  padding: 10px 22px;
  background: transparent;
  cursor: pointer;
  font-weight: 300;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.btn:hover { background: var(--charcoal); color: var(--bg); border-color: var(--charcoal); }

.text-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.text-link:hover { border-bottom-color: var(--gold); }

/* ── Contact form ── */
form.cf { max-width: 500px; margin-top: 8px; }
form.cf label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.61rem;
  color: var(--gold);
  margin: 28px 0 8px;
  font-weight: 300;
}
form.cf input, form.cf textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--border);
  padding: 10px 2px;
  font-family: var(--functional);
  font-size: 0.92rem;
  color: var(--charcoal);
  font-weight: 300;
}
form.cf textarea { min-height: 120px; resize: vertical; }
form.cf input:focus, form.cf textarea:focus { outline: none; border-bottom-color: var(--gold); }

/* ── SoundCloud embed ── */
.sc-embed { max-width: 640px; margin-top: 8px; }
.sc-embed iframe { width: 100%; border: none; }

/* ── Footer ── */
footer.sf { border-top: 0.5px solid var(--gold); margin-top: 24px; }
.fi {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px var(--pad);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}
.fi .fm { font-family: var(--display); font-size: 1.2rem; font-weight: 400; }
.fi .fq { font-family: var(--display); font-style: italic; font-size: 0.95rem; color: var(--mid); }
.fi .ft {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.6rem;
  color: var(--mid);
  font-weight: 300;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  :root { --pad: 28px; }
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 48px; }
  .about-grid, .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-grid .media { position: static; top: auto; }
  .about-grid > div:last-child, .intro-grid > div:last-child { order: -1; } /* image above text on mobile */
  section.block { padding: 40px 0; }
  .page-head { padding-top: 56px; }
}
