/* Turiya and Turiyatita — ltwilson.com/turiya
   Shared stylesheet. Contemplative dark theme, ltwilson family. */

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

:root {
  --bg: #14130f;
  --bg-raise: #1b1a15;
  --text: #f4f1ea;
  --text-secondary: #b7b1a4;
  --text-faint: #8c867a;
  --accent: #b9933f;
  --accent-hover: #d0a851;
  --accent-soft: rgba(185, 147, 63, 0.14);
  --line: rgba(244, 241, 234, 0.10);
  --line-strong: rgba(244, 241, 234, 0.18);
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  --measure: 660px;
}

html { scroll-behavior: smooth; }

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

.wrap { max-width: var(--measure); margin: 0 auto; padding: 0 24px; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-hover); }

em, i { font-style: italic; }
strong { font-weight: 500; color: var(--text); }

/* ─── Top nav ─── */
.nav {
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
  background: rgba(20, 19, 15, 0.86);
  backdrop-filter: blur(8px);
  z-index: 10;
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; min-height: 60px; gap: 6px 18px;
  padding-top: 8px; padding-bottom: 8px;
}
.nav .brand {
  font-family: var(--display); font-size: 1.1rem; color: var(--text);
  letter-spacing: .01em; white-space: nowrap;
}
.nav .links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav .links a {
  color: var(--text-secondary); font-size: .92rem; letter-spacing: .02em;
}
.nav .links a:hover, .nav .links a[aria-current="page"] { color: var(--accent); }

/* ─── Hero ─── */
.hero { padding: 110px 0 56px; }
.hero .kicker {
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.9rem); line-height: 1.1;
  letter-spacing: -0.015em; margin-bottom: 26px;
}
.hero h1 .em { font-style: italic; color: var(--accent); }
.hero .lede {
  font-size: 1.2rem; color: var(--text-secondary); max-width: 56ch;
}

/* ─── Sections / prose ─── */
section { padding: 30px 0; }
h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2rem); line-height: 1.2;
  margin: 14px 0 18px; letter-spacing: -0.01em;
}
h3 {
  font-family: var(--display); font-weight: 400; font-size: 1.25rem;
  margin: 28px 0 8px;
}
p { margin: 0 0 18px; color: var(--text-secondary); }
p.lead { color: var(--text); font-size: 1.1rem; }
.prose p:first-of-type { margin-top: 0; }

.divider { height: 1px; background: var(--line); margin: 8px 0; border: 0; }

/* ─── Inquiry list ─── */
ol.inquiry { list-style: none; counter-reset: q; margin: 8px 0 0; }
ol.inquiry > li {
  counter-increment: q; position: relative;
  padding: 22px 0 22px 58px; border-top: 1px solid var(--line);
  color: var(--text); font-size: 1.12rem; line-height: 1.55;
}
ol.inquiry > li::before {
  content: counter(q); position: absolute; left: 0; top: 22px;
  font-family: var(--display); font-size: 1.5rem; color: var(--accent);
  width: 40px; text-align: left; line-height: 1.1;
}
ol.inquiry > li .tag {
  display: block; font-size: .74rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 5px;
}
ol.inquiry > li em { color: var(--accent); font-style: italic; }

/* ─── Movements / numbered prose blocks ─── */
.movements { margin-top: 8px; }
.movement { padding: 22px 0; border-top: 1px solid var(--line); }
.movement h3 { margin: 0 0 6px; display: flex; gap: 14px; align-items: baseline; }
.movement h3 .n {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); font-family: var(--body);
}
.movement p { margin: 0; }

/* ─── Cards / index grid ─── */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 12px; }
.card {
  display: block; padding: 24px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg-raise); transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.card .ct { font-family: var(--display); font-size: 1.2rem; color: var(--text); margin-bottom: 6px; }
.card .cd { color: var(--text-secondary); font-size: .98rem; margin: 0; }
.card .go { color: var(--accent); font-size: .9rem; margin-top: 12px; display: inline-block; }
@media (max-width: 620px) { .cards { grid-template-columns: 1fr; } }

/* ─── Buttons ─── */
.btn {
  display: inline-block; background: var(--accent); color: #1a1710;
  font-weight: 500; padding: 13px 26px; border-radius: 8px;
  letter-spacing: .01em; transition: background .2s ease;
}
.btn:hover { background: var(--accent-hover); color: #1a1710; }
.btn.ghost {
  background: transparent; color: var(--accent);
  border: 1px solid var(--line-strong);
}
.btn.ghost:hover { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-hover); }

/* ─── Care / note blocks ─── */
.note {
  background: var(--bg-raise); border: 1px solid var(--line);
  border-left: 2px solid var(--accent); border-radius: 8px;
  padding: 20px 24px; margin: 24px 0; color: var(--text-secondary); font-size: .98rem;
}
.note strong { color: var(--text); }

/* ─── Form ─── */
form .field { margin-bottom: 20px; }
label { display: block; font-size: .92rem; color: var(--text); margin-bottom: 7px; letter-spacing: .01em; }
label .hint { display:block; color: var(--text-faint); font-size: .84rem; margin-top: 2px; font-weight: 400; }
input[type=text], input[type=email], select, textarea {
  width: 100%; background: #100f0c; color: var(--text);
  border: 1px solid var(--line-strong); border-radius: 7px;
  padding: 12px 14px; font-family: var(--body); font-size: 1rem; line-height: 1.5;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
.consent { display: grid; gap: 10px; }
.consent label { display: flex; gap: 10px; align-items: flex-start; color: var(--text-secondary); font-weight: 400; }
.consent input { margin-top: 5px; }

/* ─── Footer ─── */
footer {
  border-top: 1px solid var(--line); margin-top: 70px;
  padding: 40px 0 60px; color: var(--text-faint); font-size: .88rem;
}
footer .care { color: var(--text-secondary); margin-bottom: 18px; }
footer .meta a { color: var(--text-faint); }
footer .meta a:hover { color: var(--accent); }

/* utility */
.center { text-align: center; }
.mt { margin-top: 26px; }
.byline { color: var(--text-faint); font-style: italic; }

.sitebar{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:11px 22px;background:#11100e;border-bottom:1px solid rgba(201,168,76,.25);font-family:var(--display),Georgia,serif;font-size:14px}
.sitebar a{text-decoration:none;color:#cdbfa6}
.sitebar .sb-home{color:#d8be73;letter-spacing:.06em;font-size:15px}
.sitebar .sb-links a{margin-left:16px}
.sitebar a:hover{color:#fff}
@media(max-width:560px){.sitebar{flex-direction:column;gap:6px}.sitebar .sb-links a{margin:0 8px}}
