:root {
  --bg: #000;
  --bg-elevated: #0a0a0a;
  --surface: #141414;
  --field: #0c0c0c;
  --text: #f0e0d0;
  --text-muted: #f0e0d0bf;
  --text-dim: #f0e0d08c;
  --brand: #f06000;
  --brand-hover: #ff7a1a;
  --hairline: #f0e0d01f;
  --hairline-soft: #f0e0d00f;
  --font-display: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { background: var(--bg); margin: 0; }
body {
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}
::selection { background: var(--brand); color: #000; }
::placeholder { color: #f0e0d066; }
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; }

.site { background: var(--bg); color: var(--text); flex-direction: column; min-height: 100vh; display: flex; }
main { flex: 1; }
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.eyebrow { font-family: var(--font-display); letter-spacing: .18em; text-transform: uppercase; color: var(--brand); font-size: 13px; font-weight: 700; }
.rule { background: var(--brand); width: 56px; height: 2px; }
.btn {
  font-family: var(--font-display);
  background: var(--brand);
  color: #000;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  display: inline-flex;
  padding: 14px 28px;
}
.btn:hover { background: var(--brand-hover); }
.arrow-link {
  font-family: var(--font-display);
  color: var(--brand);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s;
}
.arrow-link:hover { color: var(--brand-hover); }
.card { border: 1px solid var(--hairline); background: var(--surface); transition: border-color .15s; }
.card:hover { border-color: #f0600066; }

/* Nav */
.nav {
  z-index: 50;
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline-soft);
  background: #000000d1;
  position: sticky;
  top: 0;
}
.nav__inner { max-width: var(--maxw); justify-content: space-between; align-items: center; gap: 20px; margin: 0 auto; padding: 18px 32px; display: flex; }
.nav__brand { font-family: var(--font-display); color: #fff; letter-spacing: .01em; white-space: nowrap; font-size: 18px; font-weight: 800; text-decoration: none; }
.nav__links { align-items: center; gap: 30px; font-size: 14px; display: flex; }
.nav__link { color: var(--text-muted); text-decoration: none; transition: color .15s; }
.nav__link:hover { color: var(--brand-hover); }
.nav__link[aria-current="page"] { color: var(--brand); }
.nav__cta { padding: 10px 20px; font-size: 14px; }
.nav__toggle { cursor: pointer; color: var(--text); background: none; border: 0; padding: 8px; display: none; }
.nav__toggle svg { display: block; }
@media (max-width: 860px) {
  .nav__links {
    border-bottom: 1px solid var(--hairline-soft);
    background: #000000f5;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { border-bottom: 1px solid var(--hairline-soft); padding: 14px 0; }
  .nav__cta { margin-top: 14px; padding: 14px 20px; }
  .nav__toggle { display: inline-flex; }
}

/* Newsletter form */
.nl { width: 100%; }
.nl__row { gap: 10px; display: flex; }
.nl__input {
  background: var(--field);
  min-width: 0;
  height: 54px;
  color: var(--text);
  font-family: var(--font-body);
  border: 1px solid #f0e0d040;
  border-radius: 2px;
  outline: none;
  flex: 1;
  padding: 0 18px;
  font-size: 15px;
  transition: border-color .15s;
}
.nl__input:focus { border-color: var(--brand); }
.nl__btn { white-space: nowrap; height: 54px; padding: 0 28px; font-size: 15px; }
.nl__note { color: #f0e0d080; margin: 14px 0 0; font-size: 13px; }
.nl__error { color: #ff6b6b; margin: 10px 0 0; font-size: 13px; }
.nl__btn:disabled { opacity: .6; cursor: wait; }
.nl__hp { width: 1px; height: 1px; position: absolute; top: -9999px; left: -9999px; overflow: hidden; }
.nl__success {
  background: var(--surface);
  border: 1px solid #f0600066;
  border-radius: 3px;
  align-items: center;
  gap: 12px;
  padding: 18px 26px;
  display: flex;
  box-shadow: 0 0 0 1px #f0600040, 0 8px 32px #f060002e;
}
.nl__dot { background: var(--brand); border-radius: 50%; flex: none; width: 10px; height: 10px; }
.nl__success span { font-family: var(--font-display); color: #fff; font-size: 16px; font-weight: 700; }
.nl[hidden], [hidden] { display: none !important; }
.nl--invert .nl__input { background: #000; border-color: #0006; }
.nl--invert .nl__btn { color: var(--brand); background: #000; }
.nl--invert .nl__btn:hover { background: #111; }
.nl--invert .nl__note { color: #0009; }
.nl--invert .nl__error { color: #4a0d00; font-weight: 600; }
.nl--invert .nl__success { box-shadow: none; background: #000; border-color: #00000059; }
.nl--footer .nl__input { border-color: #f0e0d033; height: 42px; padding: 0 14px; font-size: 13px; }
.nl--footer .nl__btn { height: 42px; padding: 0 18px; font-size: 13px; }

/* Footer */
.footer { background: var(--bg-elevated); border-top: 1px solid var(--hairline-soft); }
.footer__grid { max-width: var(--maxw); grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 36px; margin: 0 auto; padding: 56px 32px 28px; display: grid; }
.footer__brand { font-family: var(--font-display); color: #fff; font-size: 17px; font-weight: 800; }
.footer__tagline { color: #f0e0d080; max-width: 240px; margin-top: 12px; font-size: 14px; line-height: 1.55; }
.footer__col { color: #f0e0d099; flex-direction: column; gap: 11px; font-size: 14px; display: flex; }
.footer__col a { color: inherit; text-decoration: none; transition: color .15s; }
.footer__col a:hover { color: var(--brand); }
.footer__heading { color: #f0e0d0bf; margin-bottom: 12px; font-size: 14px; font-weight: 600; }
.footer__bar { max-width: var(--maxw); border-top: 1px solid var(--hairline-soft); color: #f0e0d066; margin: 0 auto; padding: 20px 32px; font-size: 13px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* Home hero */
.hero { text-align: center; flex-direction: column; align-items: center; max-width: 760px; margin: 0 auto; padding: 104px 32px 96px; scroll-margin-top: 80px; display: flex; }
.hero__headshot { object-fit: cover; border: 1px solid #f0e0d026; border-radius: 50%; width: 180px; height: 180px; margin-bottom: 18px; }
.hero__title { color: #fff; letter-spacing: -.015em; margin: 22px 0 0; font-size: clamp(40px, 6vw, 68px); font-weight: 800; line-height: 1.02; }
.hero__sub { color: #f0e0d0c7; max-width: 560px; margin: 24px 0 0; font-size: 19px; line-height: 1.6; }
.hero__accent { font-family: var(--font-display); color: var(--brand); max-width: 560px; margin: 18px 0 0; font-size: 17px; font-weight: 600; line-height: 1.5; }
.hero__accent span { color: #fff; }
.hero__form { width: 100%; max-width: 480px; margin-top: 34px; }

/* Proof band */
.proof__band { background: var(--bg); border-bottom: 1px solid var(--hairline-soft); }
.proof__band--surface { background: var(--surface); border-top: 1px solid var(--hairline-soft); }
.proof__inner { flex-direction: column; align-items: center; gap: 26px; max-width: 1080px; margin: 0 auto; padding: 40px 32px; display: flex; }
.proof__label { font-size: 12px; }
.proof__logos { flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; display: flex; }
.logo-tile { background: #fff; border-radius: 4px; justify-content: center; align-items: center; height: 76px; padding: 0 22px; display: flex; }
.logo-tile img { object-fit: contain; width: auto; }

/* Positioning */
.positioning { text-align: center; flex-direction: column; align-items: center; max-width: 680px; margin: 0 auto; padding: 104px 32px; display: flex; }
.positioning .rule { margin-bottom: 26px; }
.positioning__title { color: #fff; font-size: clamp(30px, 4vw, 44px); font-weight: 800; line-height: 1.1; }
.positioning__body { color: #f0e0d0bf; margin: 22px 0 0; font-size: 18px; line-height: 1.65; }
.positioning__body span { color: #fff; font-weight: 600; }
.positioning .arrow-link { margin-top: 24px; }

/* Services on home */
.services-home { max-width: var(--maxw); text-align: center; margin: 0 auto; padding: 0 32px 104px; }
.services-home__title { color: #fff; font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
.services-home__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; display: grid; }
.svc { text-align: left; flex-direction: column; padding: 28px 22px; display: flex; }
.svc__title { font-family: var(--font-display); color: #fff; font-size: 18px; font-weight: 800; line-height: 1.2; }
.svc__body { color: #f0e0d09e; flex: 1; margin-top: 12px; font-size: 14px; line-height: 1.5; }
.svc__cta { margin-top: 20px; font-size: 14px; }
.services-home__all { color: #f0e0d099; margin-top: 28px; font-size: 15px; text-decoration: none; transition: color .15s; display: inline-block; }
.services-home__all:hover { color: var(--brand); }
@media (max-width: 900px) { .services-home__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .services-home__grid { grid-template-columns: 1fr; } }

/* CTA band */
.cta { background: var(--brand); }
.cta__inner { text-align: center; max-width: 760px; margin: 0 auto; padding: 96px 32px; }
.cta__eyebrow { font-family: var(--font-display); letter-spacing: .18em; color: #fff; text-transform: uppercase; margin-bottom: 18px; font-size: 15px; font-weight: 800; }
.cta__title { color: #000; font-size: clamp(30px, 4.4vw, 52px); font-weight: 800; line-height: 1.04; }
.cta__sub { color: #000000b8; max-width: 520px; margin: 18px auto 0; font-size: 17px; }
.cta__form { max-width: 480px; margin: 30px auto 0; }

/* About */
.about { text-align: center; flex-direction: column; align-items: center; max-width: 720px; margin: 0 auto; padding: 104px 32px 96px; display: flex; }
.about__headshot { object-fit: cover; border: 1px solid #f0e0d026; border-radius: 50%; width: 150px; height: 150px; }
.about__eyebrow { margin-top: 24px; }
.about__title { color: #fff; letter-spacing: -.01em; margin: 16px 0 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.04; }
.about__body { text-align: left; margin-top: 26px; }
.about__body p { color: #f0e0d0bf; margin: 20px 0 0; font-size: 18px; line-height: 1.7; }
.about__body p.lead { color: #f0e0d0d1; margin: 0; }
.aoa { font-family: var(--font-display); color: var(--brand); font-weight: 800; }
.about__stats { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); gap: 20px; width: 100%; max-width: 520px; margin-top: 40px; padding: 26px 0; display: flex; }
.stat { flex: 1; }
.stat__value { font-family: var(--font-display); color: var(--brand); font-size: 30px; font-weight: 800; line-height: 1; }
.stat__label { color: var(--text-dim); margin-top: 6px; font-size: 13px; }
.about__cta { margin-top: 32px; padding: 16px 32px; font-size: 15px; }

/* Services page */
.services { text-align: center; max-width: 1000px; margin: 0 auto; padding: 104px 32px 96px; }
.services__title { color: #fff; letter-spacing: -.01em; margin: 16px 0 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.04; }
.services__sub { color: #f0e0d0bf; max-width: 560px; margin: 20px auto 0; font-size: 18px; line-height: 1.6; }
.services__grid { text-align: left; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; display: grid; }
.services .svc { padding: 30px; }
.services .svc__title { font-size: 22px; }
.services .svc__body { color: #f0e0d0a6; margin-top: 12px; font-size: 15px; line-height: 1.55; }
.services .svc__cta { margin-top: 20px; font-size: 14px; display: inline-block; }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .services__grid { grid-template-columns: 1fr; } }

/* Blog */
.blog { text-align: center; flex-direction: column; align-items: center; max-width: 640px; margin: 0 auto; padding: 140px 32px; display: flex; }
.blog__title { color: #fff; letter-spacing: -.01em; margin: 16px 0 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.04; }
.blog__sub { color: #f0e0d0bf; margin: 22px 0 0; font-size: 18px; line-height: 1.65; }
.blog__cta { margin-top: 32px; padding: 16px 32px; font-size: 15px; }

/* Contact */
.contact { max-width: 620px; margin: 0 auto; padding: 104px 32px 96px; }
.contact__head { text-align: center; }
.contact__title { color: #fff; letter-spacing: -.01em; margin: 16px 0 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.04; }
.contact__sub { color: #f0e0d0bf; max-width: 460px; margin: 18px auto 0; font-size: 17px; line-height: 1.6; }
.contact__form { flex-direction: column; gap: 18px; margin-top: 40px; display: flex; }
.field-row { gap: 16px; display: flex; }
.field-row .field { flex: 1; }
.field__label { font-family: var(--font-display); letter-spacing: .08em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 8px; font-size: 12px; font-weight: 600; display: block; }
.field__input {
  background: var(--field);
  width: 100%;
  height: 48px;
  color: var(--text);
  font-family: var(--font-body);
  box-sizing: border-box;
  border: 1px solid #f0e0d033;
  border-radius: 2px;
  outline: none;
  padding: 0 16px;
  font-size: 15px;
  transition: border-color .15s;
}
.field__input:focus { border-color: var(--brand); }
select.field__input { appearance: none; padding: 0 14px; }
.field__textarea { resize: vertical; height: auto; padding: 14px 16px; line-height: 1.5; }
.contact__submit { width: 100%; height: 52px; font-size: 15px; }
.contact__success { font-family: var(--font-display); color: #fff; text-align: center; background: var(--surface); border: 1px solid #f0600066; border-radius: 3px; margin: 0; padding: 22px; font-size: 16px; font-weight: 600; }
.contact__error { color: #ff6b6b; text-align: center; margin: 0; font-size: 14px; }
.contact__submit:disabled { opacity: .6; cursor: wait; }
.hp { width: 1px; height: 1px; position: absolute; top: -9999px; left: -9999px; overflow: hidden; }
@media (max-width: 520px) { .field-row { flex-direction: column; } }

/* Podcast */
.podcast { max-width: 1000px; margin: 0 auto; padding: 104px 32px 96px; }
.podcast__head { text-align: center; flex-direction: column; align-items: center; display: flex; }
.podcast__art { object-fit: cover; border: 1px solid var(--hairline); border-radius: 10px; width: 230px; height: 230px; margin-bottom: 30px; }
.podcast__title { color: #fff; letter-spacing: -.01em; margin: 14px 0 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.04; }
.podcast__sub { color: #f0e0d0bf; max-width: 520px; margin: 18px 0 0; font-size: 18px; line-height: 1.6; }
.podcast__platforms { flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; display: flex; }
.pill { color: #f0e0d0d9; cursor: pointer; border: 1px solid #f0e0d038; border-radius: 2px; padding: 12px 22px; font-size: 14px; text-decoration: none; transition: border-color .15s, color .15s; }
.pill:hover { border-color: var(--brand); color: #fff; }
.podcast__grid { grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; display: grid; }
.episode { background: var(--surface); border: 1px solid #f0e0d01a; text-decoration: none; transition: border-color .15s; display: block; }
.episode:hover { border-color: #f0600066; }
.episode__thumb { aspect-ratio: 16 / 9; border-bottom: 1px solid var(--hairline-soft); position: relative; overflow: hidden; }
.episode__thumb img { object-fit: cover; object-position: center; filter: brightness(.85); width: 100%; height: 100%; transition: filter .15s; }
.episode:hover .episode__thumb img { filter: brightness(1); }
.episode__badge { color: var(--brand); font-family: var(--font-display); letter-spacing: .02em; background: #000000c7; border-radius: 2px; padding: 4px 10px; font-size: 14px; font-weight: 800; position: absolute; bottom: 10px; left: 10px; }
.episode__body { padding: 18px; }
.episode__title { font-family: var(--font-display); color: #fff; font-size: 16px; font-weight: 600; line-height: 1.35; }
.episode__date { color: #f0e0d073; margin-top: 6px; font-size: 13px; }
.all-episodes { margin-top: 56px; }
.all-episodes__heading { color: #fff; margin-bottom: 18px; font-size: 22px; font-weight: 800; }
.all-episodes__list { border-top: 1px solid var(--hairline-soft); }
.episode-row { border-bottom: 1px solid var(--hairline-soft); align-items: baseline; gap: 16px; padding: 14px 10px; text-decoration: none; transition: background .15s; display: flex; }
.episode-row:hover { background: #f060000f; }
.episode-row:hover .episode-row__title { color: var(--brand-hover); }
.episode-row__num { width: 52px; font-family: var(--font-display); color: var(--brand); flex: none; font-size: 13px; font-weight: 700; }
.episode-row__title { color: #f0e0d0d9; flex: 1; font-size: 15px; line-height: 1.4; transition: color .15s; }
.episode-row__meta { color: #f0e0d073; white-space: nowrap; flex: none; font-size: 13px; }
@media (max-width: 700px) {
  .podcast__grid { grid-template-columns: 1fr; }
  .episode-row { flex-wrap: wrap; gap: 6px 14px; }
  .episode-row__title { flex-basis: 100%; order: 2; }
  .episode-row__meta { order: 3; }
}

/* Portfolio */
.portfolio-intro { text-align: center; max-width: 720px; margin: 0 auto; padding: 104px 32px 0; }
.portfolio-intro__title { color: #fff; letter-spacing: -.01em; margin: 16px 0 0; font-size: clamp(34px, 5vw, 52px); font-weight: 800; line-height: 1.04; }
.portfolio-intro__sub { color: #f0e0d0bf; max-width: 560px; margin: 20px auto 0; font-size: 18px; line-height: 1.6; }

.portfolio-section { max-width: var(--maxw); margin: 0 auto; padding: 64px 32px; }
.portfolio-section__heading { color: #fff; font-size: clamp(24px, 3vw, 30px); font-weight: 800; margin-bottom: 8px; }
.portfolio-section__sub { color: var(--text-dim); font-size: 15px; margin-bottom: 36px; }

.portfolio-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; display: grid; }
.portfolio-card { display: flex; flex-direction: column; }
.portfolio-card__logo { background: #fff; border-radius: 3px 3px 0 0; height: 96px; justify-content: center; align-items: center; padding: 20px 28px; display: flex; }
.portfolio-card__logo img { max-height: 100%; width: auto; object-fit: contain; }
.portfolio-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.portfolio-card__name { font-family: var(--font-display); color: #fff; font-size: 17px; font-weight: 800; }
.portfolio-card__desc { color: #f0e0d09e; margin-top: 10px; font-size: 14px; line-height: 1.55; flex: 1; }
.portfolio-card__link { margin-top: 16px; font-size: 13px; }
@media (max-width: 900px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }

.portfolio-past-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; display: grid; }
.portfolio-past-card { position: relative; overflow: hidden; border-radius: 3px; border: 1px solid var(--hairline); aspect-ratio: 4 / 3; }
.portfolio-past-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(70%) brightness(.55); transition: filter .2s; }
.portfolio-past-card:hover img { filter: grayscale(0%) brightness(.7); }
.portfolio-past-card__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; background: linear-gradient(180deg, transparent 40%, #000000e6 100%); }
.portfolio-past-card__name { font-family: var(--font-display); color: #fff; font-size: 14px; font-weight: 800; }
.portfolio-past-card__desc { color: #f0e0d0a6; margin-top: 4px; font-size: 12px; line-height: 1.4; }
@media (max-width: 900px) { .portfolio-past-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-past-grid { grid-template-columns: 1fr; } }

.portfolio-values { text-align: center; max-width: 720px; margin: 0 auto; padding: 24px 32px 24px; }
.portfolio-values .rule { margin: 0 auto 26px; }
.portfolio-values__title { color: #fff; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; line-height: 1.15; }
.portfolio-values__body { color: #f0e0d0bf; margin: 22px 0 0; font-size: 17px; line-height: 1.7; }
.portfolio-values__body + .portfolio-values__body { margin-top: 16px; }
