/* ═══════════════════════════════════════════════════════════════
   lalao.com — shared stylesheet
   Change the variables below to retheme the entire site.
   ═══════════════════════════════════════════════════════════════ */

:root {

  /* ── Page ── */
  --page-bg:              #f9f8f6;

  /* ── Structural text colours ── */
  --color-body:           #1a1a18;   /* primary text, headings, wordmark */
  --color-secondary:      #5a5a56;   /* body copy, subheadings */
  --color-tertiary:       #6b6b66;   /* nav links, supporting text */
  --color-muted:          #a0a09a;   /* footnotes, footer, markers, table notes */
  --color-placeholder:    #b0b0aa;   /* form placeholders */

  /* ── Typographic roles ── */
  --color-eyebrow:        red;/* #9e9b94;    all eyebrows / section labels */
  --color-title:          #1a1a18;   /* h1, sh2, cta-h, pull quotes */
  --color-subtitle:       #5a5a56;   /* .sub — hero / page subtitles */
  --color-footer-text:    #a0a09a;   /* footer name + location */
  --color-sidebarLabel:   #9e9b94;

  /* ── Component colours ── */
  --color-blockquote:     #1a1a18;   /* blockquote text */
  --color-bq-border:      rgba(0,0,0,0.35);
  --color-card-bg:        rgba(0,0,0,0.04);
  --color-btn-border:     rgba(0,0,0,0.35);
  --color-btn-hover:      rgba(0,0,0,0.04);
  --color-link-ghost:     #6b6b66;
  --color-link-ghost-border: rgba(0,0,0,0.25);

  /* ── Dividers ── */
  --color-rule:           rgba(0,0,0,0.12);  /* section borders, nav border */
  --color-rule-light:     rgba(0,0,0,0.10);  /* list item borders */
  --color-rule-faint:     rgba(0,0,0,0.08);  /* subtler list dividers */

}

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

/* ───────────────────────────────────────────────
   Base
─────────────────────────────────────────────── */
html {
  background-color: var(--page-bg);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-body);
  background-color: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

/* ───────────────────────────────────────────────
   Layout
─────────────────────────────────────────────── */
.page {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ───────────────────────────────────────────────
   Navigation
─────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem 0 3rem;
  border-bottom: 0.5px solid var(--color-rule);
  margin-bottom: 4.5rem;
}

.wordmark {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-title);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-tertiary);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-links a:hover {
  color: var(--color-body);
}

.nav-links a.active {
  color: var(--color-body);
  border-bottom: 0.5px solid var(--color-btn-border);
  padding-bottom: 1px;
}

/* ───────────────────────────────────────────────
   Sections
─────────────────────────────────────────────── */
.sec {
  padding-bottom: 5rem;
  border-bottom: 0.5px solid var(--color-rule);
  margin-bottom: 5rem;
}

.sec-last {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

/* ───────────────────────────────────────────────
   Eyebrow
─────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 1.5rem;
}

/* ───────────────────────────────────────────────
   Headings
─────────────────────────────────────────────── */
.h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-title);
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.h1 em {
  font-style: italic;
}

.sh2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-title);
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.sh2 em {
  font-style: italic;
}

/* ───────────────────────────────────────────────
   Body copy
─────────────────────────────────────────────── */
.sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-subtitle);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-secondary);
  max-width: 560px;
  margin-bottom: 1.2rem;
}

/* ───────────────────────────────────────────────
   Buttons & links
─────────────────────────────────────────────── */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-body);
  background: transparent;
  border: 0.5px solid var(--color-btn-border);
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
}

.btn:hover {
  background: var(--color-btn-hover);
}

.link-ghost {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-link-ghost);
  text-decoration: none;
  border-bottom: 0.5px solid var(--color-link-ghost-border);
  padding-bottom: 1px;
}

.link-ghost:hover {
  color: var(--color-body);
}

.ctas {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ───────────────────────────────────────────────
   Blockquote
─────────────────────────────────────────────── */
.bq {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 23px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-blockquote);
  border-left: 1.5px solid var(--color-bq-border);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  max-width: 460px;
}

/* ───────────────────────────────────────────────
   Dash list (problem list, who-list)
─────────────────────────────────────────────── */
.plist {
  list-style: none;
  margin-top: 2rem;
}

.plist li {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 0.5px solid var(--color-rule-light);
  font-size: 15px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.65;
}

.plist li:last-child {
  border-bottom: 0.5px solid var(--color-rule-light);
}

.mk {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0.06em;
  min-width: 20px;
  padding-top: 3px;
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────
   Prototype table
─────────────────────────────────────────────── */
.ptable {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--color-rule-light);
  border-left: 0.5px solid var(--color-rule-light);
  margin: 2.5rem 0 0.5rem;
}

.pc {
  padding: 1.4rem 1rem;
  border-right: 0.5px solid var(--color-rule-light);
  border-bottom: 0.5px solid var(--color-rule-light);
}

.pt {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 0.65rem;
}

.pp {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-title);
  margin-bottom: 0.4rem;
}

.pd {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-tertiary);
}

.table-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ───────────────────────────────────────────────
   2-column approach / disciplines grid
─────────────────────────────────────────────── */
.agrid,
.dgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /*border-top: 0.5px solid var(--color-rule-light);*/
  margin-top: 2.5rem;
}

.ai,
.di {
  padding: 1.6rem 0;
  /* border-bottom: 0.5px solid var(--color-rule-light); */
}

.top-row {
  border-bottom: 0.5px solid var(--color-rule-light);
}

.ai:nth-child(odd),
.di:nth-child(odd) {
  border-right: 0.5px solid var(--color-rule-light);
  padding-right: 1.5rem;
}

.ai:nth-child(even),
.di:nth-child(even) {
  padding-left: 1.5rem;
}

.at,
.dt {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-title);
  margin-bottom: 0.5rem;
}

.ab,
.db {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-tertiary);
}

/* ───────────────────────────────────────────────
   Founder block
─────────────────────────────────────────────── */
.founder-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.founder-pull {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-title);
  border-top: 0.5px solid var(--color-bq-border);
  padding-top: 1.25rem;
}

/* ───────────────────────────────────────────────
   Proof cards
─────────────────────────────────────────────── */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.pc2 {
  background: var(--color-card-bg);
  border-radius: 8px;
  padding: 1.5rem;
}

.pctx {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 0.75rem;
}

.pco {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-title);
  margin-bottom: 0.65rem;
}

.pcn {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-tertiary);
  line-height: 1.6;
}

.client-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--color-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ───────────────────────────────────────────────
   Who this is for
─────────────────────────────────────────────── */
.who-block {
  border-top: 0.5px solid var(--color-rule-light);
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.who-q {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-title);
  margin-bottom: 1.25rem;
}

.who-list {
  list-style: none;
}

.who-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  padding: 0.6rem 0;
  border-bottom: 0.5px solid var(--color-rule-light);
  display: flex;
  gap: 0.75rem;
}

.who-list li:first-child {
  border-top: 0.5px solid var(--color-rule-light);
}

/* ───────────────────────────────────────────────
   CTA block
─────────────────────────────────────────────── */
.cta-block {
  background: var(--color-card-bg);
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.cta-h {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-title);
  margin-bottom: 1rem;
}

.cta-h em {
  font-style: italic;
}

.cta-b {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-tertiary);
  max-width: 380px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ───────────────────────────────────────────────
   Timeline (about page)
─────────────────────────────────────────────── */
.timeline {
  margin-top: 2.5rem;
}

.tl-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 2rem;
  padding: 1.75rem 0;
  border-top: 0.5px solid var(--color-rule-light);
}

.tl-item:last-child {
  border-bottom: 0.5px solid var(--color-rule-light);
}

.tl-period {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-eyebrow);
  letter-spacing: 0.03em;
  padding-top: 2px;
  flex-shrink: 0;
}

.tl-role {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-title);
  margin-bottom: 0.3rem;
}

.tl-org {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 0.6rem;
}

.tl-lesson {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.7;
  max-width: 480px;
}

/* ───────────────────────────────────────────────
   Contact form (contact page)
─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.75rem;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-eyebrow);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-body);
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--color-link-ghost-border);
  padding: 0.5rem 0 0.75rem;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.15s;
  line-height: 1.6;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-bottom-color: rgba(0,0,0,0.6);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-placeholder);
  font-weight: 300;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239e9b94'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1rem;
}

select option[value=""] {
  color: var(--color-placeholder);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
}

.sidebar-block {
  /* border-top: 0.5px solid var(--color-rule-light); 
  padding-top: 1.5rem; */
  margin-bottom: 2rem;
}

.sidebar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-sidebarLabel);
  margin-bottom: 1rem;
}

.sidebar-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.mailto-link {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  text-decoration: none;
  border-bottom: 0.5px solid var(--color-link-ghost-border);
  padding-bottom: 1px;
  word-break: break-all;
}

.mailto-link:hover {
  border-bottom-color: rgba(0,0,0,0.6);
}

.expectations-list {
  list-style: none;
  margin-top: 0.5rem;
}

.expectations-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--color-tertiary);
  line-height: 1.7;
  padding: 0.5rem 0;
  border-bottom: 0.5px solid var(--color-rule-faint);
  display: flex;
  gap: 0.75rem;
}

.expectations-list li:first-child {
  border-top: 0.5px solid var(--color-rule-faint);
}

.confirm {
  display: none;
  background: var(--color-card-bg);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
}

.confirm.visible {
  display: block;
}

.confirm-h {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-title);
  margin-bottom: 0.75rem;
}

.confirm-h em {
  font-style: italic;
}

.confirm-b {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-tertiary);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ───────────────────────────────────────────────
   Footer
─────────────────────────────────────────────── */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 0.5px solid var(--color-rule-light);
}

.ft-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-footer-text);
}

.ft-loc {
  font-size: 12px;
  font-weight: 300;
  color: var(--color-footer-text);
  letter-spacing: 0.03em;
}

/* ───────────────────────────────────────────────
   Responsive
─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .h1  { font-size: 36px; }
  .sh2 { font-size: 28px; }

  .nav-links { display: none; }

  .ptable         { grid-template-columns: 1fr 1fr; }
  .proof-grid     { grid-template-columns: 1fr; }
  .agrid,
  .dgrid          { grid-template-columns: 1fr; }
  .founder-block  { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }

  .ai:nth-child(odd),
  .di:nth-child(odd)  { border-right: none; padding-right: 0; }

  .ai:nth-child(even),
  .di:nth-child(even) { padding-left: 0; }

  .tl-item   { grid-template-columns: 1fr; gap: 0.25rem; }
  .tl-period { margin-bottom: 0.25rem; }

  .cta-block { padding: 2rem 1.25rem; }
}
