/* llamaluke.com — the studio site.
   Sage and cream, geometry instead of watercolour. Bricolage Grotesque carries the
   display voice, Manrope the reading voice. Every picture on the site is a vector. */
:root {
  --cream: #f5f0e6;
  --cream-light: #fbf8f2;
  --tan: #e9dfcb;
  --tan-deep: #d8cdb4;
  --sage: #8da284;
  --sage-deep: #55694f;
  --sage-ink: #2e3b2c;
  --ink: #1f261d;
  --ink-soft: #545c50;
  --ink-faint: #7a8076;
  --max: 1120px;
  --radius: 20px;
  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--display); line-height: 1.04; letter-spacing: -0.025em; color: var(--ink); text-wrap: pretty; }
a { color: var(--sage-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--sage-ink); }
img, svg { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

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

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--cream) 86%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tan-deep);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.brand .mark { width: 34px; height: 34px; border-radius: 10px; background: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; }
.brand .mark svg { width: 22px; height: 22px; }
nav.main { display: flex; gap: 6px; }
nav.main a { text-decoration: none; font-weight: 600; font-size: 14.5px; color: var(--ink-soft); padding: 8px 12px; border-radius: 999px; transition: background .15s ease, color .15s ease; }
nav.main a:hover { color: var(--ink); background: var(--tan); }
nav.main a[aria-current="page"] { color: var(--cream-light); background: var(--sage-deep); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px; text-decoration: none; transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--sage-deep); color: var(--cream-light); }
.btn.primary:hover { background: var(--sage-ink); color: var(--cream-light); }
.btn.ghost { border: 1.5px solid var(--sage-ink); color: var(--sage-ink); }
.btn.ghost:hover { background: var(--tan); }

/* ---------- hero ---------- */
.hero { padding: 84px 0 56px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 22px; }
.eyebrow svg { width: 18px; height: 18px; }
.hero h1 { font-size: clamp(44px, 6.6vw, 78px); font-weight: 700; max-width: 11em; }
.hero h1 .accent { color: var(--sage-deep); }
.hero p.lede { margin-top: 22px; font-size: 19px; color: var(--ink-soft); max-width: 32em; text-wrap: pretty; }
.cta-row { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero .art { justify-self: end; width: min(100%, 460px); }
.hero .art img { width: 100%; height: auto; }

/* ---------- principles ---------- */
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; padding: 8px 0 24px; }
.principle { background: var(--cream-light); border: 1px solid var(--tan-deep); border-radius: var(--radius); padding: 24px 24px 26px; }
.principle .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--tan); display: grid; place-items: center; margin-bottom: 16px; }
.principle .icon svg { width: 24px; height: 24px; }
.principle h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.principle p { font-size: 15px; color: var(--ink-soft); }

/* ---------- sections ---------- */
section { padding: 64px 0; }
.kicker { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); }
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--sage); border-radius: 2px; }
section h2 { font-size: clamp(32px, 4.4vw, 46px); font-weight: 700; margin: 12px 0 16px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-head .lede { color: var(--ink-soft); max-width: 38em; font-size: 17px; text-wrap: pretty; }

/* ---------- project cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; margin-top: 36px; }
.card {
  background: var(--cream-light); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--tan-deep);
  display: flex; flex-direction: column;
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--sage); }
.card .thumb { aspect-ratio: 16/9; width: 100%; height: auto; background: var(--tan); }
.card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .title { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card h3 { font-size: 24px; font-weight: 700; }
.card .status { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--tan); color: var(--sage-ink); white-space: nowrap; }
.card .status.live { background: var(--sage-deep); color: var(--cream-light); }
.card p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.card .meta { font-size: 13px; color: var(--ink-soft); display: flex; gap: 6px; flex-wrap: wrap; }
.card .meta span { border: 1px solid var(--tan-deep); padding: 3px 10px; border-radius: 999px; }
.card a.more { font-weight: 700; font-size: 15px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.card a.more svg { width: 14px; height: 14px; transition: transform .15s ease; }
.card a.more:hover svg { transform: translateX(3px); }

/* ---------- studio band ---------- */
.studio { background: var(--sage-deep); color: var(--cream); border-radius: 28px; padding: 56px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 48px; align-items: center; margin: 24px 0 8px; }
.studio .kicker { color: var(--tan); }
.studio .kicker::before { background: var(--sage); }
.studio h2 { color: var(--cream-light); }
.studio p { color: var(--tan); font-size: 17px; max-width: 34em; text-wrap: pretty; }
.studio p + p { margin-top: 1em; }
.studio a { color: var(--cream-light); }
.studio .figure { justify-self: center; width: min(100%, 300px); }
.studio .figure svg { width: 100%; height: auto; }

/* ---------- about + prose ---------- */
.prose { max-width: 44em; }
.prose p { margin-bottom: 1.1em; color: var(--ink-soft); text-wrap: pretty; }
.prose p strong { color: var(--ink); font-weight: 700; }
.two-col { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 48px; align-items: start; }
.portrait { background: var(--tan); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--tan-deep); }
.portrait img { width: 100%; height: auto; }
.facts { list-style: none; margin-top: 20px; background: var(--cream-light); border: 1px solid var(--tan-deep); border-radius: var(--radius); padding: 6px 22px; }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--tan); display: flex; justify-content: space-between; gap: 16px; font-size: 15px; }
.facts li:last-child { border-bottom: none; }
.facts li b { font-weight: 700; color: var(--sage-ink); }

/* ---------- footer ---------- */
footer.site { border-top: 1px solid var(--tan-deep); padding: 44px 0 56px; margin-top: 48px; background: var(--tan); }
footer.site .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
footer.site p { color: var(--ink-soft); font-size: 14px; display: flex; align-items: center; gap: 10px; }
footer.site p svg { width: 20px; height: 20px; }
footer.site nav { display: flex; gap: 20px; flex-wrap: wrap; }
footer.site a { font-size: 14px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-top: 56px; }
  .hero .art { justify-self: start; width: min(100%, 380px); }
  .principles { grid-template-columns: minmax(0, 1fr); }
  .studio { grid-template-columns: minmax(0, 1fr); padding: 40px 28px; }
  .studio .figure { justify-self: start; width: min(100%, 220px); }
  .two-col { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding-inline: 20px; }
  header.site .wrap { height: 60px; }
  .brand span.text { display: none; }
  nav.main a { padding: 7px 10px; font-size: 14px; }
  section { padding: 48px 0; }
  .cards { grid-template-columns: minmax(0, 1fr); }
}
