/* Sheila: shared strip + landing page */
:root {
  --s-ink: #17201b;
  --s-ink-2: #4b5a52;
  --s-muted: #7e8c85;
  --s-paper: #eff0ea;
  --s-surface: #ffffff;
  --s-line: #d5d9d2;
  --s-green: #1f5f4a;
  --s-green-ink: #ffffff;
  --s-mustard: #f2b705;
  --s-font-display: 'Syne', 'Helvetica Neue', Arial, sans-serif;
  --s-font-body: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--s-paper); color: var(--s-ink); font-family: var(--s-font-body); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* The strip that sits above every page on the domain */
.sheila-strip { background: var(--s-ink); color: #e9ede9; font-family: var(--s-font-body); font-size: 13px; }
.sheila-strip .in { max-width: 1180px; margin: 0 auto; padding: 8px 20px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.sheila-strip .wordmark { font-family: var(--s-font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.02em; color: #fff; text-decoration: none; }
.sheila-strip .wordmark span { color: var(--s-mustard); }
.sheila-strip nav { display: flex; gap: 2px; flex-wrap: wrap; }
.sheila-strip nav a { color: #cfd6d1; text-decoration: none; padding: 4px 10px; border-radius: 999px; }
.sheila-strip nav a:hover { background: #2a342e; color: #fff; }
.sheila-strip nav a[aria-current='page'] { background: var(--s-mustard); color: var(--s-ink); font-weight: 700; }
.sheila-strip .note { margin-left: auto; color: #aab4ad; }
.sheila-strip .note a { color: #e9ede9; }
@media (max-width: 720px) { .sheila-strip .note { margin-left: 0; width: 100%; } }

/* Landing */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.hero { padding: 64px 0 36px; display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 40px; align-items: end; }
.hero h1 { font-family: var(--s-font-display); font-weight: 800; font-size: clamp(34px, 4.6vw, 58px); line-height: 1.02; letter-spacing: -0.03em; margin: 0 0 20px; text-wrap: balance; max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--s-green); }
.hero p { font-size: 19px; color: var(--s-ink-2); max-width: 58ch; margin: 0; }
.hero .aside { border-left: 3px solid var(--s-mustard); padding-left: 18px; color: var(--s-ink-2); font-size: 15px; }
.hero .aside b { color: var(--s-ink); }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; padding-top: 48px; } }

.eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; color: var(--s-green); margin: 0 0 10px; }

.cases { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; padding: 24px 0 64px; }
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }
.case { background: var(--s-surface); border: 1px solid var(--s-line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.case .shot { position: relative; height: 300px; overflow: hidden; background: #dfe3dc; border-bottom: 1px solid var(--s-line); }
.case .shot img { width: 100%; height: auto; object-fit: cover; object-position: top; filter: saturate(0.85); }
.case .shot .tag { position: absolute; top: 12px; left: 12px; background: var(--s-ink); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.case .body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case h2 { font-family: var(--s-font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; margin: 0; }
.case .meta { color: var(--s-muted); font-size: 14px; }
.case ul { margin: 0; padding-left: 18px; color: var(--s-ink-2); font-size: 15px; display: flex; flex-direction: column; gap: 4px; }
.case .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: 15px; border: 1px solid transparent; }
.btn.primary { background: var(--s-green); color: var(--s-green-ink); }
.btn.primary:hover { background: #17493a; }
.btn.ghost { border-color: var(--s-line); color: var(--s-ink); background: transparent; }
.btn.ghost:hover { background: #e6e9e2; }

.how { border-top: 1px solid var(--s-line); padding: 48px 0 56px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
@media (max-width: 860px) { .how { grid-template-columns: 1fr; } }
.how h3 { font-family: var(--s-font-display); font-size: 18px; margin: 0 0 6px; }
.how p { margin: 0; color: var(--s-ink-2); font-size: 15px; }

.foot { border-top: 1px solid var(--s-line); padding: 24px 0 48px; color: var(--s-muted); font-size: 13px; display: flex; gap: 20px; flex-wrap: wrap; }
